Learn R Programming

lindia (version 0.10)

gg_qqplot: Plot quantile-quantile plot (QQPlot) in ggplot with qqline shown.

Description

Plot quantile-quantile plot (QQPlot) in ggplot with qqline shown.

Usage

gg_qqplot(fitted.lm, scale.factor = 1)

Value

A qqplot with fitted qqline

Arguments

fitted.lm

a fitted linear model (i.e. lm, glm) that contains fitted regression

scale.factor

numeric; scales the point size and linewidth to allow customized viewing. Defaults to 1.

Examples

Run this code
library(MASS)
data(Cars93)
cars_lm <- lm(Price ~ Passengers + Length + RPM, data = Cars93)
gg_qqplot(cars_lm)

Run the code above in your browser using DataLab