Skip to content
Prev 27357 / 63424 Next

Package Building and Name Space

On 1/23/2008 11:31 AM, Johannes Graumann wrote:
With the obscuring you've done it's pretty hard to be sure, but I'd 
assume you have the expression MyPackage::MyFunction somewhere in your 
package, but MyPackage doesn't have a namespace.  In that case, you have 
to make sure it is attached via

library(MyPackage)

or

require(MyPackage)

before you can use the "::" operator.

Duncan Murdoch