View source: R/plot_marginal_perf.R
plot_marginal_perf | R Documentation |
get marginal performance from dfPerf
plot_marginal_perf(dfPerf, color_cut = 10, perf_lab = "Median relative error")
dfPerf |
The performance dataframe which should have the columns : perf, ridge, input_scaling, leaking_rate, spectral_radius. Where perf is the performance metric |
color_cut |
The cutting point to highlight best values (default = 10) |
perf_lab |
The label of the performance metric. |
A plot with 4 facets
dfPerf <-
data.frame(
perf = runif(n = 10),
ridge = runif(n = 10),
input_scaling = runif(n = 10),
leaking_rate = runif(n = 10)
)
reservoirnet::plot_marginal_perf(dfPerf = dfPerf, color_cut = 2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.