Skip to contents

Creates plots showing parameter estimates with confidence intervals. Adapts automatically to the method used (MLE, bootstrap, hierarchical).

Usage

plot_uncertainty.fb4_result(
  fb4_result,
  parameters = "all",
  color_scheme = "blue",
  add_ci_text = TRUE
)

Arguments

fb4_result

FB4 result object with uncertainty estimates

parameters

Parameters to plot: "p_value", "consumption", "all", default "all"

color_scheme

Color scheme to use, default "blue"

add_ci_text

Add confidence interval text, default TRUE

Value

NULL (creates plot)

Examples

if (FALSE) { # \dontrun{
plot_uncertainty.fb4_result(mle_result)
plot_uncertainty.fb4_result(bootstrap_result, parameters = "p_value")
} # }