Learn R Programming

see (version 0.6.4)

plot.see_check_normality: Plot method for check model for (non-)normality of residuals

Description

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

Usage

# S3 method for see_check_normality
plot(
  x,
  type = c("density", "qq", "pp"),
  data = NULL,
  size_line = 0.8,
  size_point = 2,
  alpha = 0.2,
  dot_alpha = 0.8,
  colors = c("#3aaf85", "#1b6ca8"),
  detrend = FALSE,
  ...
)

Arguments

x

An object.

type

Character vector, indicating the type of plot.

data

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

size_line

Size of line geoms.

size_point

Size of point-geoms.

dot_alpha, alpha

ALpha level of the confidence bands and point-geoms.

colors

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

detrend

Should the plot be detrended?

...

Arguments passed to or from other methods.

Value

A ggplot2-object.

Examples

Run this code
# 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