search for: rohwer2

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

Did you mean: rohwer
2012 Feb 09
1
passing an extra argument to an S3 generic
...lapse=',') hat } where mlm.influence() does the calculations, but also allows the m= argument to specify subset size. Yet when I test this I can't seem to pass the m= argument directly, so that it gets stuffed in to the infl= call to mlm.influence. # fit an mlm library(heplots) Rohwer2 <- subset(Rohwer, subset=group==2) rownames(Rohwer2)<- 1:nrow(Rohwer2) Rohwer.mod <- lm(cbind(SAT, PPVT, Raven) ~ n+s+ns+na+ss, data=Rohwer2) > class(Rohwer.mod) [1] "mlm" "lm" ## this doesn't work, as I would like it to, calling the hatvalues.mlm method, bu...