This function calculates the statistical performance of all the saved model runs in the /rswap_saved/ folder, as well as the last performed run. It does this per variable and for any/all given depths, for the passed statistical performance indicator stat (Currently supported are "NSE", "RMSE", "PBIAS", "RSR")

plot_statistics(
  project_path,
  var,
  depth = NULL,
  graph = "default",
  stat = "NSE",
  verbose = F
)

Arguments

project_path

path to project directory (string)

var

variable to show (string)

depth

depth(s) to show. Leave blank for all (numeric/vector)

graph

either "default" "sorted" or "ggplot" leave blank for default (string)

stat

statistical indicator function ("NSE", "RMSE", "PBIAS", "RSR") (string)

verbose

print status? (flag)