Tornado plot of a one-way sensitivity analysis
owsa_tornado(
owsa,
return = c("plot", "data"),
txtsize = 12,
min_rel_diff = 0,
col = c("full", "bw"),
n_y_ticks = 8,
ylim = NULL,
ybreaks = NULL
)
If return == "plot"
, a ggplot2
tornado plot derived from the owsa
object, or if return == "data"
, a data.frame
containing all data contained in the plot.
A tornado plot is a visual aid used to identify which parameters are driving most of the variation
in a specified model outcome.
an owsa object
either return a ggplot object plot
or a data frame with
ranges of parameters for which each strategy is optimal.
base text size
this function only plots
parameters that lead to a relative change in the outcome greater than or equal
to min_rel_diff
, which must be between 0 and 1. The default (0) is that
no strategies are filtered.
either none, full color, or black and white
number of y-axis ticks
vector of y-axis limits, or NULL, which sets limits automatically
vector of y-axis breaks.
will override n_y_ticks
if provided.