Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

Since the mean of the residuals should be close to zero and with my calculations yield the following result:

> mean(resid(trees.lm)
[1] -3.065293e-17

is it correct to stipulate that the mean is close to zero?

My second question is as follows: While I am working with the gamble data set in my class, I need to compute the correlation of the residuals with income. How would I set up the calculation? I'm thinking of cor(residuals(data.lm)).

share|improve this question
1  
Please, register your account. That will enhance your experience with this site and will allow you to vote on and accept previous answers. – chl Sep 19 '12 at 20:11

3 Answers

The answer is a very definite no.

The reason is that the size of something is almost always relative: when you ask whether the mean residual is "small," you have to have some sense of small compared to what.

For example, consider these data:

set.seed(17)
x <- (-5):5 / 5
y <- 10^(-8)*(x + rnorm(length(x)))
fit <- lm(y ~ x)
mean(residuals(fit))

The output is 3.763354e-26, which is one billionth the size of your mean residual. By comparison, your mean residual is enormous. That's why you have no right to claim your mean residual is small, at least not without further investigation.

A reasonable measure of size for your comparison is the typical size of a residual:

mean(abs(residuals(fit))

For these sample data, the mean absolute residual is 4.942933e-09. Compared to this, the mean residual is only 3.763354e-26 / 4.942933e-09 = about $10^{-17}$ as big. That's like comparing the diameter of a proton to the size of a city; it's a tiny number indeed. (If you're not yet comfortable with the "e", or scientific, notation, you can find some introductions online, such as at http://www.nyu.edu/pages/mathmol/textbook/scinot.html.)

Do a similar calculation for your own data to find out whether the mean residual is small.


Your second question is about using R. Those questions are better suited for the StackOverflow site.

share|improve this answer

Answer to the first part. -3.065293e-17 is R-speak for 0. I am not sure what model you have fit, but if it's a basic regression, the residuals are forced, in theory, to sum to zero. But in the world of floating point arithmetic, which is what R is doing, you don't always get 0 ... rather, something very teensy.

Second part. I am not sure that I understand your question. cor() takes 2 vectors, as in cor(x,y). You need to give it your residuals and your income.

share|improve this answer

Quick answer for the first part: yes. Getting a more accurate answer would require some sort of idea of the dispersion of the sample mean, however.

Quick answer for part two: what do you mean by set up? Looks like you got the right idea with the code. You might be missing a parentheses, though. Keep in mind stats::cor() handles a few types of correlation.

If you're looking for the mathematical formula, I'm sure you'd get quite a bit of results with the query "Pearson Correlation."

share|improve this answer
to compute the correlation of residuals with income, i will use cor(resid(mdl),income) to get the result or will I cor(resid(mdl)$income). – jerry Sep 19 '12 at 1:15
use the first one. – Taylor Sep 19 '12 at 3:31
1  
michelle, also take a look at the faq for some guidance on how to ask questions here. – Taylor Sep 19 '12 at 3:33
Is my interpretatin that income is important factor since my result was -7.243857e-17? and @Taylor, thanks – jerry Sep 19 '12 at 13:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.