R/autoplot.default.R

Defines functions autoplot.default

Documented in autoplot.default

#' Default autoplot method
#' @param object object to plot
#' @param ... other arguments
#' @export
autoplot.default <- function(object, ...) {
  if (is.null(object)) {
    return()
  }
  stop(paste0("Objects of class <", class(object),"> are not supported by autoplot"))
}

Try the malariaAtlas package in your browser

Any scripts or data that you put into this service are public.

malariaAtlas documentation built on March 28, 2026, 1:08 a.m.