Displaying 1 result from an estimated 1 matches for "varidentmethodsrevised".
2007 Aug 07
0
Bug in coef<-.varIdent method (nlme package) (PR#9831)
...;-.varIdent" is applied to an initialized object of
class varIdent with some of the coefficients being _fixed_.
Attached files: 'varIdentOrthoEmail.txt' and 'varIdentOrthoEmail.Rout'
illustrate the problem.
2. The code for "coef<-.varIdentX" method in
'varIdentmethodsRevised.txt' 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,&qu...