residual.plot | R Documentation |
Plots the residual of observed variable.
residual.plot(Expected, Residuals, sigma, main = deparse(substitute(Expected)),
col.pts = "blue", col.ctr = "red", col.sgm = "black", cex = 0.5,
gray.scale = FALSE, xlab = "Predicted", ylab = "Residuals", ...)
Expected |
Expected value. |
Residuals |
Residual value. |
sigma |
Standard error. |
main |
main for the plot. See |
col.pts |
Color of the points. |
col.ctr |
Color of the line at zero. |
col.sgm |
Color of standard error line. |
cex |
A numerical value giving the amount by which plotting text and symbols should be magnified relative to the default. See par for detail. |
gray.scale |
If |
xlab |
Label for x axis. |
ylab |
Label for y axis. |
... |
Additional parameters passed to |
Plot to visualize pattern of residulal value for the expected value.
Masanao Yajima yajima@stat.columbia.edu, M.Grazia Pittau grazia@stat.columbia.edu
old.par <- par(no.readonly = TRUE)
x <- rnorm(100)
y <- rnorm(100)
fit <- lm(y~x)
y.hat <- fitted(fit)
u <- resid(fit)
sigma <- sigma.hat(fit)
residual.plot(y.hat, u, sigma)
par(old.par)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.