View source: R/generateHyperParsEffect.R
plotHyperParsEffect | R Documentation |
Plot hyperparameter validation path. Automated plotting method for
HyperParsEffectData
object. Useful for determining the importance
or effect of a particular hyperparameter on some performance measure and/or
optimizer.
plotHyperParsEffect(
hyperpars.effect.data,
x = NULL,
y = NULL,
z = NULL,
plot.type = "scatter",
loess.smooth = FALSE,
facet = NULL,
global.only = TRUE,
interpolate = NULL,
show.experiments = FALSE,
show.interpolated = FALSE,
nested.agg = mean,
partial.dep.learn = NULL
)
hyperpars.effect.data |
( |
x |
( |
y |
( |
z |
( |
plot.type |
( |
loess.smooth |
( |
facet |
( |
global.only |
( |
interpolate |
(Learner | |
show.experiments |
( |
show.interpolated |
( |
nested.agg |
( |
partial.dep.learn |
(Learner | |
ggplot2 plot object.
Any NAs incurred from learning algorithm crashes will be indicated in
the plot (except in the case of partial dependence) and the NA values will be
replaced with the column min/max depending on the optimal values for the
respective measure. Execution time will be replaced with the max.
Interpolation by its nature will result in predicted values for the
performance measure. Use interpolation with caution. If “partial.dep”
is set to TRUE
in generateHyperParsEffectData, only
partial dependence will be plotted.
Since a ggplot2 plot object is returned, the user can change the axis labels and other aspects of the plot using the appropriate ggplot2 syntax.
# see generateHyperParsEffectData
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.