spearson | R Documentation |
Standardized Pearson residuals.
spearson(object)
object |
fitted model. |
Takes ordinary Pearson residuals and standardizes them.
Returns the residuals.
Kristian Hovde Liland
data <- data.frame(y = rnorm(8),
x = factor(c('a','a','a','a','b','b','b','b')),
z = factor(c('a','a','b','b','a','a','b','b')))
mod <- lm(y ~ x + z, data=data)
spearson(mod)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.