plot.see_check_collinearity: Plot method for multicollinearity checks

View source: R/plot.check_collinearity.R

plot.see_check_collinearityR Documentation

Plot method for multicollinearity checks

Description

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

Usage

## S3 method for class 'see_check_collinearity'
plot(
  x,
  data = NULL,
  colors = c("#3aaf85", "#1b6ca8", "#cd201f"),
  size_point = 4,
  size_line = 0.8,
  ...
)

Arguments

x

An object.

data

The original data used to create this object. Can be a statistical model.

colors

Character vector of length two, indicating the colors (in hex-format) for points and line.

size_point

Numeric specifying size of point-geoms.

size_line

Numeric value specifying size of line geoms.

...

Arguments passed to or from other methods.

Value

A ggplot2-object.

Examples

library(performance)
m <- lm(mpg ~ wt + cyl + gear + disp, data = mtcars)
result <- check_collinearity(m)
result
plot(result)


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