plot_marginal_perf: plot_marginal_perf

View source: R/plot_marginal_perf.R

plot_marginal_perfR 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)


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