plot_perf_22 | R Documentation |
Unit plot for 2x2 function
plot_perf_22(x, y, dfPerf, perf_lab, trans = "log10")
x |
The x feature |
y |
The y feature |
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. |
trans |
The transformation (default is "log10") |
A 2x2 plot
dfPerf <-
data.frame(
perf = runif(n = 10),
ridge = runif(n = 10),
input_scaling = runif(n = 10),
leaking_rate = runif(n = 10)
)
reservoirnet::plot_perf_22(
dfPerf = dfPerf,
x = "ridge",
y = "input_scaling",
perf_lab = "MSE"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.