Skip to content
Back to formatted view

Raw Message

Message-ID: <loom.20110324T011932-297@post.gmane.org>
Date: 2011-03-24T00:20:40Z
From: Ben Bolker
Subject: import question

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)

is required, even though there is also an

exportPattern("^[^\\.]")

in the NAMESPACE file, which I would have thought would
export 'ranef' along with everything else ... ?