-
unknown authored
v1.0.3 new function plot.OutputsModel() replaces plot_OutputsModel() (s3method and new chart with temperature for CemaNeige) #4490 #4198
f7afad4e
Forked from
HYCAR-Hydro / airGR
1503 commits behind the upstream repository.
plot_OutputsModel <- function(OutputsModel, PlotChoice = "all", ...) {
.Deprecated(new = "plot_OutputsModel", package = NULL,
msg = "Deprecated function. Please, use plot.OutputsModel() or plot() on an object of class OutputsModel.",
old = as.character(sys.call(sys.parent()))[1L])
if (!missing(OutputsModel)) {
warning("Deprecated \"OutputsModel\" argument Please, use \"x\" instead.")
}
if (!missing(PlotChoice)) {
warning("Deprecated \"PlotChoice\" argument Please, use \"which\" instead.")
}
plot.OutputsModel(x = OutputsModel, which = PlotChoice, ...)
}