Displaying 1 result from an estimated 1 matches for "rppadesign".
2012 Apr 12
1
R-2.15.0 and Exporting Methods Converted To S4 Generic
...tandardGeneric("image"))
}
We have done the same for many S3 generics, converting them
to S4 and adding specific method-combinations as such...
## From various other R files...
setMethod("image", signature(x="RPPA"), ...
setMethod("image", signature(x="RPPADesign"), ...
And then exported them for use outside the package.
## NAMESPACE
import(methods)
importFrom("graphics", image)
exportClasses(....)
exportMethods(image)
If the problem is because of the exportMethods(), I'm left
stumped as to how to work around this. Making our S4 obje...