powered by
The plot() method for the performance::check_collinearity() function.
plot()
performance::check_collinearity()
# S3 method for see_check_collinearity plot(x, data = NULL, colors = c("#3aaf85", "#1b6ca8", "#cd201f"), ...)
An object.
The original data used to create this object. Can be a statistical model or such.
Character vector of length two, indicating the colors (in hex-format) for points and line.
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_collinearity(m) result plot(result) # }
Run the code above in your browser using DataLab