[R] accessing unexported functions

2007-05-21 Thread Erich Neuwirth
I need to access some internal function of a package temporarily. These functions normally that are not visible outside of the package. I know the MyPackage:::myfunction mechanism, but that does not solve my problem. Instead, I need to add the internal namespace of the package to the search path,

Re: [R] accessing unexported functions

2007-05-21 Thread Seth Falcon
Erich Neuwirth [EMAIL PROTECTED] writes: I need to access some internal function of a package temporarily. These functions normally that are not visible outside of the package. I know the MyPackage:::myfunction mechanism, but that does not solve my problem. Instead, I need to add the