plot_perf_22 {reservoirnet} | R Documentation |
plot_perf_22
Description
Unit plot for 2x2 function
Usage
plot_perf_22(x, y, dfPerf, perf_lab, trans = "log10")
Arguments
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") |
Value
A 2x2 plot
Examples
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"
)
[Package reservoirnet version 0.2.0 Index]