Re: [R] methods help and glmmPQL

2003-07-14 Thread Roger D. Peng
I think with the introduction of namespaces in R version 1.7.0 many of the methods in packages were hidden from the user. That's why (for example) VarCorr.lme does not show up. methods(class =) only shows user-visible methods. Notice the following: methods(VarCorr) [1] "VarCorr.lme" "

[R] methods help and glmmPQL

2003-07-14 Thread Federico Calboli
Dear All, I would like to ask you to help me with my memeory. I remember using some function that would list all the possible methods I could apply to an object. Say, if I had an object of class=lme, it would tell me that that I could do stuff like qqnorm(myobjct), or VarCorr(myobject). In g