plot_marginal_perf {reservoirnet} | R Documentation |
plot_marginal_perf
Description
get marginal performance from dfPerf
Usage
plot_marginal_perf(dfPerf, color_cut = 10, perf_lab = "Median relative error")
Arguments
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. |
Value
A plot with 4 facets
Examples
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)
[Package reservoirnet version 0.2.0 Index]