Learn R Programming

see (version 0.10.0)

plot.see_rope: Plot method for Region of Practical Equivalence

Description

The plot() method for the bayestestR::rope().

Usage

# S3 method for see_rope
plot(
  x,
  data = NULL,
  alpha_rope = 0.5,
  color_rope = "cadetblue",
  show_intercept = FALSE,
  n_columns = 1,
  ...
)

Value

A ggplot2-object.

Arguments

x

An object.

data

The original data used to create this object. Can be a statistical model.

alpha_rope

Numeric specifying transparency level of ROPE ribbon.

color_rope

Character specifying color of ROPE ribbon.

show_intercept

Logical, if TRUE, the intercept-parameter is included in the plot. By default, it is hidden because in many cases the intercept-parameter has a posterior distribution on a very different location, so density curves of posterior distributions for other parameters are hardly visible.

n_columns

For models with multiple components (like fixed and random, count and zero-inflated), defines the number of columns for the panel-layout. If NULL, a single, integrated plot is shown.

...

Arguments passed to or from other methods.

Examples

Run this code
if (FALSE) { # identical(Sys.getenv("NOT_CRAN"), "true") && require("rstanarm")
library(rstanarm)
library(bayestestR)
set.seed(123)
m <<- suppressWarnings(stan_glm(Sepal.Length ~ Petal.Width * Species, data = iris, refresh = 0))
result <- rope(m)
result
plot(result)
}

Run the code above in your browser using DataLab