View source: R/plot_2x2_perf.R
plot_2x2_perf | R Documentation |
Plot 2x2 combinations of the hyperparameters.
plot_2x2_perf(
dfPerf,
perf_lab = "Median relative error",
legend_position = "bottom",
trans = "log10"
)
dfPerf |
The performance dataframe which should have the columns : perf, ridge, input_scaling, leaking_rate, spectral_radius. Where perf is the performance metric |
perf_lab |
The label of the performance metric. |
legend_position |
Position of legend passed to ggarrange |
trans |
The transformation (default is "log10") |
A mutliple 2x2 plots.
dfPerf <-
data.frame(
perf = runif(n = 10),
ridge = runif(n = 10),
input_scaling = runif(n = 10),
leaking_rate = runif(n = 10)
)
reservoirnet::plot_2x2_perf(dfPerf = dfPerf)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.