| par.plot {gamlss} | R Documentation |
This function can be used to plot parallel plots for each individual in a repeated measurement study.
It is based on the coplot() function of R.
par.plot(formula = NULL, data = NULL, subjects = NULL,
color = TRUE, show.given = TRUE, ...)
formula |
a formula describing the form of conditioning plot. A
formula of the form |
data |
a data frame containing values for any variables in the formula. This argument is compulsory. |
subjects |
a factor which distinguish between the individual participants |
color |
whether the parallel plot are shown in colour, |
show.given |
logical (possibly of length 2 for 2 conditioning variables): should conditioning plots be shown for the corresponding conditioning variables (default 'TRUE') |
... |
for extra arguments |
It returns a plot.
Note that similar plot can be fount in the library nlme by Pinheiro and Bates
Mikis Stasinopoulos mikis.stasinopoulos@gamlss.org
Rigby, R. A. and Stasinopoulos D. M. (2005). Generalized additive models for location, scale and shape,(with discussion), App. Statist., 54, part 3, pp 507-554.
Stasinopoulos D. M. Rigby R.A. (2007) Generalized additive models for location scale and shape (GAMLSS) in R. Journal of Statistical Software, Vol. 23, Issue 7, Dec 2007, http://www.jstatsoft.org/v23/i07.
Stasinopoulos D. M., Rigby R.A., Heller G., Voudouris V., and De Bastiani F., (2017) Flexible Regression and Smoothing: Using GAMLSS in R, Chapman and Hall/CRC.
(see also http://www.gamlss.org/).
library(nlme) data(Orthodont) par.plot(distance~age,data=Orthodont,subject=Subject) par.plot(distance~age|Sex,data=Orthodont,subject=Subject) par.plot(distance~age|Subject,data=Orthodont,subject=Subject,show.given=FALSE)