plot.see_check_homogeneity {see} | R Documentation |
Plot method for homogeneity of variances checks
Description
The plot()
method for the performance::check_homogeneity()
function.
Usage
## S3 method for class 'see_check_homogeneity'
plot(x, data = NULL, ...)
Arguments
x |
An object. |
data |
The original data used to create this object. Can be a statistical model. |
... |
Arguments passed to or from other methods. |
Value
A ggplot2-object.
Examples
library(performance)
model <<- lm(len ~ supp + dose, data = ToothGrowth)
result <- check_homogeneity(model)
result
plot(result)
[Package see version 0.8.5 Index]