plot.see_check_homogeneity: Plot method for homogeneity of variances checks

View source: R/plot.check_homogeneity.R

plot.see_check_homogeneityR 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


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


see documentation built on Nov. 3, 2023, 5:10 p.m.