| plot.see_equivalence_test_effectsize {see} | R Documentation | 
Plot method for (conditional) equivalence testing
Description
The plot() method for the bayestestR::equivalence_test() function.
Usage
## S3 method for class 'see_equivalence_test_effectsize'
plot(x, ...)
## S3 method for class 'see_equivalence_test'
plot(
  x,
  rope_color = "#0171D3",
  rope_alpha = 0.2,
  show_intercept = FALSE,
  n_columns = 1,
  ...
)
## S3 method for class 'see_equivalence_test_lm'
plot(
  x,
  size_point = 0.7,
  rope_color = "#0171D3",
  rope_alpha = 0.2,
  show_intercept = FALSE,
  n_columns = 1,
  ...
)
Arguments
| x | An object. | 
| ... | Arguments passed to or from other methods. | 
| rope_color | Character specifying color of ROPE ribbon. | 
| rope_alpha | Numeric specifying transparency level of ROPE ribbon. | 
| show_intercept | Logical, if  | 
| 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  | 
| size_point | Numeric specifying size of point-geoms. | 
Value
A ggplot2-object.
Examples
library(effectsize)
m <- aov(mpg ~ factor(am) * factor(cyl), data = mtcars)
result <- eta_squared(m)
plot(result)
[Package see version 0.8.5 Index]