View source: R/plot.equivalence_test.R
plot.see_equivalence_test_effectsize | R Documentation |
The plot()
method for the bayestestR::equivalence_test()
function.
## 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, ... )
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. |
A ggplot2-object.
library(effectsize) m <- aov(mpg ~ factor(am) * factor(cyl), data = mtcars) result <- eta_squared(m) plot(result)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.