I am developing a package which has the function forecast.myclass
. I want that function to work nicely with forecast
package. I.e. when forecast
package is loaded the code forecast(object)
should call forecast.myclass
from my package.
Since I need only generic definition of forecast
from the package forecast
, and I do not use any other function from the package forecast
I am reluctant to include it in the Depends. So I define the generic in my package in the following way:
##'
##' @export
forecast <- function(object,...) UseMethod("forecast")
##' @rdname forecast.midas_r
##' @method forecast midas_r
##' @export
forecast.midas_r <- function(object,newdata=NULL,method=c("static","dynamic"),insample=get_estimation_sample(object),...) {
Now everything works as expected when package forecast
is not loaded. But when I load package forecast
, then forecast.midas_r
is not called, when doing forecast(object)
where object
is of class midas_r
. How should I solve this problem?
The problem here is that your definition of the
forecast
generic is masking the definition from the forecast package, and your method is associated with your generic rather than the forecast package generic; this is just a complicated instance of two packages defining functions of the same name. The solution is to bite the bullet and Depend: on forecast, or when at the command line and both your package and forecast are attached fully resolve the functionmypackage::forecast()
, or Import: forecast but not make the forecast generic available to the end user except by having themrequire(forecast)
(this might be appropriate ifforecast
functionality were somehow peripheral to your package, e.g., plotting in 3D when plotting in 2D was sufficient).For what it's worth, an S4 method in PkgB defined and exported on an imported S4 generic from PkgA implicitly exposes the S4 generic to the user, so the generic is available even if Imports: PkgA is specified in the DESCRIPTION file of PkgB.