Generic plotting function for plotting group performance curves. The method
does some data pre-processing specific to ZGroupCurvesDataFrame
object before passing the data and arguments for plot_curves
.
# S4 method for ZGroupCurvesDataFrame,missing
plot(
x,
min = FALSE,
mean = FALSE,
w.mean = FALSE,
max = FALSE,
ext = FALSE,
subs = NULL,
...
)
ZGroupCurvesDataFrame
object.
logical plot the minimum feature performance of a group (default: FALSE).
logical plot the minimum feature performance of a group
(default: FALSE). If no other statistic is used, mean will always be plotted.
If other satistic(s) are plotted and mean is to be disabled, this will have
to be done by setting mean
explicitly to FALSE.
logical plot the weighted mean feature performance of a group (default: FALSE).
logical plot the maxmimun feature performance of a group (default: FALSE).
logical plot extinction risk of a group (default: FALSE).
character vector defining the names of groups (subset of all groups) to be plotted.
Additional arguments passed on to plot_curves
.
read_curves
and plot_curves
.