I am creating a package and for S3 methods I export them using
##' @method predict myclass
##' @export
predict.myclass <- function(object,...) { }
Now when I load the package, then predict
works on object of the class myclass
, but function predict.myclass
is not exported. In the NAMESPACE I only get the entry S3method(predict,myclass)
. So is there a way to export predict.myclass
too, so that user will get the code of predict.myclass
when he(she) writes predict.myclass
in the console?
My answer is "don't do that". The user can
methods(predict); getAnywhere('predict.myclass')
ormypackage:::predict.myclass
. There's a learning curve for the user, but mastering this with your method helps the user navigate all methods. Reasons not to export the method are that it isn't meant to be invoked directly, and it clutters the search path with unnecessary symbols (every symbol typed at the prompt, e.g.,ls()
, has to be found by looking through objects on all environments returned bysearch()
, and user packages like yours stand between the start of the search and name resolution of these commonly used functions).