On 03/24/2011 03:03 PM, Hadley Wickham wrote: > On Wed, Mar 23, 2011 at 7:20 PM, Ben Bolker <bbol...@gmail.com> wrote: >> Ben Bolker <bbolker <at> gmail.com> writes: >> >>> >>> >>> I have been struggling all day to import a particular function/method >>> combination (ranef(), which extracts the random effects from a mixed >>> model fit) from the nlme package into another package ... so far without >>> success. >>> >> >> Answered my own question, finally. >> >> Apparently an explicit >> >> export(ranef) > > But why do you want to export this method out of your package? (If you > export it, you will need to document it) Can't you rely on nlme being > loaded? > > i.e. your test should be > > library(nlme) > library(raneftest) > x <- 1 > class(x) <- "x" > ranef.x(x) > ranef(x) >
nlme and lme4 do not play nicely together (this may be fixable/eventually be fixed, but it's the current state of affairs), and I want this package to interoperate with lme4. Thus I want to avoid explicitly loading nlme. Sorry I didn't make this clear initially (someone else asked about this off-list). cheers Ben ______________________________________________ R-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-devel