> langage et graphiques > Graphiques > xyplots
xyplots
Traçage d'une variable en fonction d'une autre pour chaque valeur d'un facteur :
- il faut utiliser la librairie lattice (library(lattice) à exécuter).
- xyplot(Sepal.Length ~ Petal.Length | Species, iris, auto.key = TRUE)
- on peut aussi avoir des plots avec plusieurs variables x (une couleur par variable x) : xyplot(Sepal.Length ~ Petal.Length + Petal.Width | Species, iris, auto.key = TRUE)
- on peut aussi avoir des plots avec plusieurs variables y (une couleur par variable y) : xyplot(Sepal.Length + Sepal.Width ~ Petal.Length | Species, iris, auto.key = TRUE)
- et enfin, il peut y avoir à la fois on peut aussi avoir des plots avec plusieurs variables x et plusieurs variables y (une couleur par paire de variables) : xyplot(Sepal.Length + Sepal.Width ~ Petal.Length + Petal.Width | Species, iris, auto.key = TRUE)
Copyright Aymeric Duclert
programmer en R, tutoriel R, graphes en R