lm_plot {nima} | R Documentation |
Linear Model Diagnostic Plots
Description
Produce standard diagnostic plots for linear models using ggplot2.
Usage
lm_plot(x, ...)
Arguments
x |
A linear model object produced by |
... |
Extra arguments, currently ignored. |
Examples
n <- 100
x1 <- rnorm(n)
y1 <- rnorm(n)
linmod <- lm(y1 ~ x1)
plot(linmod)
[Package nima version 0.6.2 Index]