autoplot.Nop()
plots the objective functionautoplot.Nop_results()
plots boxplots of optimization resultsautoplot.Nop_optima()
plots a bar chart of the found optimaautoplot.Nop_deviation()
plots deviations per dimension from a reference
Usage
# S3 method for class 'Nop'
autoplot(object, xlim = NULL, xlim2 = NULL, ...)
# S3 method for class 'Nop_optima'
autoplot(object, ...)
# S3 method for class 'Nop_deviation'
autoplot(object, jitter = TRUE, ...)
# S3 method for class 'Nop_results'
autoplot(
object,
which_element = "seconds",
group_by = NULL,
relative = FALSE,
...
)
Arguments
- object
Depends on the method:
for
autoplot.Nop()
, aNop
objectfor
autoplot.Nop_results()
, the valueNop$results
for
autoplot.Nop_optima()
, the valueNop$optima
for
autoplot.Nop_deviation()
, the valueNop$deviation
- xlim, xlim2
[
numeric(2)
]
Ranges for the first and second parameter to plot.If
NULL
, they are derived from the specified initial values inobject
.- ...
Other arguments passed to specific methods.
- jitter
[
logical(1)
]
Apply jitter to the points?- which_element
[
character(1)\]\cr A column name of
object` to plot.- group_by
[`character(1)]
Selects how the plot is grouped. Either:NULL
to not group,"optimization"
to group by optimization label,`"optimizer"“ to group by optimizer label.
- relative
[`logical(1)]
Plot values relative to the overall median?