search for: whichfix

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

Did you mean: whichf
2007 Aug 07
0
Bug in coef<-.varIdent method (nlme package) (PR#9831)
...t' file illustrates how to fix this problem. 3. Specifically, to fix the problem the line if (length(value) != nGroups - 1) in the "coef<-.varIdent" method should be replaced with the following two lines : nFixed <- sum(as.numeric(attr(object,"whichFix"))) # inserted new line if (length(value) != nGroups - nFixed - 1) { # modified original line 4. Note: Although I am using lme "3.1-80", the related problem PR#9765 is fixed manually by over-writing varIdent function. Thank you Andrzej Galecki