Creates comparative boxplots and jittered points for calibration and validation
performance metrics. The function takes two data frames: one for calibration and
one for validation—with a column run and additional performance metric columns.
It reshapes the data, adds identifiers for type, and produces faceted plots for
each metric.
Value
A ggplot object showing faceted boxplots and jittered values for each
performance metric, comparing calibration vs. validation results.
Examples
if (FALSE) { # \dontrun{
cal <- data.frame(run = 1:10, NSE = runif(10), KGE = runif(10))
val <- data.frame(run = 1:10, NSE = runif(10), KGE = runif(10))
plot_cal_val(cal, val)
} # }
