powered by
The plot() method for the performance::check_normality() function.
plot()
performance::check_normality()
# S3 method for see_check_normality plot( x, type = c("density", "qq", "pp"), data = NULL, size = 0.8, point_size = 2, ... )
An object.
Character vector, indicating the type of plot.
The original data used to create this object. Can be a statistical model or such.
Size of geoms. Depends on the context of the plot() function, so this argument may change size of points, lines or bars.
Size of point-geoms.
Arguments passed to or from other methods.
A ggplot2-object.
# NOT RUN { library(performance) m <<- lm(mpg ~ wt + cyl + gear + disp, data = mtcars) result <- check_normality(m) plot(result) # }
Run the code above in your browser using DataLab