plot_perf_22: plot_perf_22

View source: R/plot_perf_22.R

plot_perf_22R 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"
)


reservoirnet documentation built on April 4, 2023, 5:12 p.m.