group.plots | R Documentation |
Functions for plotting a profiles plot for grouped data.
group.plot(x,y,groups,...)
group.lines(x,y,groups,...)
group.points(x,y,groups,...)
y |
the response vector of dimension |
x |
vector of longitudinal (repeated measures) covariate of dimension |
groups |
factor of dimension |
... |
additional graphical arguments passed to |
Christian E. Galarza <cgalarza88@gmail.com> and Victor H. Lachos <hlachos@ime.unicamp.br>
Orthodont
, Cholesterol
, QRLMM
## Not run:
#A full profile plot for Soybean data
data(Soybean,package = "qrNLMM")
attach(Soybean)
group.plot(x = Time,y = weight,groups = Plot,type="b",
main="Soybean profiles",xlab="time (days)",
ylab="mean leaf weight (gr)")
#Profile plot by genotype
group.plot(x = Time[Variety=="P"],y = weight[Variety=="P"],
groups = Plot[Variety=="P"],type="l",col="blue",
main="Soybean profiles by genotype",xlab="time (days)",
ylab="mean leaf weight (gr)")
group.lines(x = Time[Variety=="F"],y = weight[Variety=="F"],
groups = Plot[Variety=="F"],col="black")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.