Re: [R] clear plot linear mixed model

2012-01-05 Thread ken knoblauch
Christof Kluß email.uni-kiel.de> writes: > Am 02-01-2012 10:54, schrieb ken knoblauch: > > Christof Kluß email.uni-kiel.de> writes: > >> lme<- lme(conc ~ name/time - 1, > >> random=conc~time|nr,method="ML",data=measurements) > > see plot.augPred in the nlme package > thx, but how to set "primary

Re: [R] clear plot linear mixed model

2012-01-02 Thread Christof Kluß
Am 02-01-2012 10:54, schrieb ken knoblauch: Christof Kluß email.uni-kiel.de> writes: lme<- lme(conc ~ name/time - 1, random=conc~time|nr,method="ML",data=measurements) see plot.augPred in the nlme package thx, but how to set "primary"? I always get the error plot(augPred(lme)) augPre

Re: [R] clear plot linear mixed model

2012-01-02 Thread ken knoblauch
Christof Kluß email.uni-kiel.de> writes: > I would like to plot the regression lines of a model like > > lme <- lme(conc ~ name/time - 1, > random=conc~time|nr,method="ML",data=measurements) > > Ideally a seperate plot for each regression line (respectively name) and > seperate colors for the

[R] clear plot linear mixed model

2012-01-02 Thread Christof Kluß
Hi, first a happy new year ;) I would like to plot the regression lines of a model like lme <- lme(conc ~ name/time - 1, random=conc~time|nr,method="ML",data=measurements) Ideally a seperate plot for each regression line (respectively name) and seperate colors for the measurements (nr). H