View source: R/tournament_methods.R
plot.tournament | R Documentation |
Compare the four models from the tournament object in multiple ways
## S3 method for class 'tournament'
plot(x, type = "tournament_results", transformed = FALSE, ...)
x |
An object of class "tournament" |
type |
A character denoting what type of plot should be drawn. Possible types are:
|
transformed |
A logical value indicating whether the quantity should be plotted on a transformed scale used during the Bayesian inference. Defaults to FALSE. |
... |
Not used in this function |
No return value, called for side effects
tournament
to run a discharge rating curve tournament and summary.tournament
for summaries.
data(krokfors)
set.seed(1)
t_obj <- tournament(formula = Q ~ W, data = krokfors, num_cores = 2)
plot(t_obj)
plot(t_obj, transformed = TRUE)
plot(t_obj, type = 'boxplot')
plot(t_obj, type = 'f')
plot(t_obj, type = 'sigma_eps')
plot(t_obj, type = 'residuals')
plot(t_obj, type = 'tournament_results')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.