Learn R Programming

see (version 0.10.0)

plot.see_check_homogeneity: Plot method for homogeneity of variances checks

Description

The plot() method for the performance::check_homogeneity() function.

Usage

# S3 method for see_check_homogeneity
plot(x, data = NULL, ...)

Value

A ggplot2-object.

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.

Examples

Run this code
library(performance)

model <<- lm(len ~ supp + dose, data = ToothGrowth)
result <- check_homogeneity(model)
result
plot(result)

Run the code above in your browser using DataLab