search for: fm50var

Displaying 1 result from an estimated 1 matches for "fm50var".

Did you mean: fm10var
2007 Mar 13
0
segfault with correlation structures in nlme
...uce the error messages using the Ovary data set and the example in the Pinheiro & Bates book: >library(nlme) >data(ovary) >fm10var.lme <- lme(follicles ~ sin(2 * pi * Time) + cos(2 * pi * Time),data=Ovary, random=pdDiag(~sin(2*pi*Time))) >fm50var.lme <- update(fm10var.lme,correlation=corARMA(p=1,q=1)) >fm10var.nlme <- nlme(follicles ~ A + B * sin(2 * pi * w * Time) + C * cos(2 * pi * w * Time),data=Ovary, fixed= A+B+C+w~1, random=pdDiag(A+B+w~1),...