Re: Comparing predictors

From: Ross Clement (clemenr_at_wmin.ac.uk)
Date: 06/26/04


Date: 25 Jun 2004 17:00:26 -0700

clemenr@wmin.ac.uk (Ross Clement) wrote in message news:<e5b5d377.0406250709.4603faaa@posting.google.com>...
> Lionel Barnett <mail@lionelb.com> wrote in message news:<2k24skF16dfdnU1@uni-berlin.de>...
> > The figures are:
> >
> > corr(Y',Y'') = 0.8851
> > corr(Y'-Y,Y''-Y) = 0.9991 (!)
>
> I must say that I agree with the addition of the exclamation mark to
> your figures. I'm not quite sure how you get a correlation for the
> error so much higher than the correlation of the raw values. By that I
> mean that I'm doubting my own knowledge, rather than your results.

After a quick check, it appears that if your residuals are perfectly
correlated, but of different magnitude, that you can get the pattern
of correlations above. Doing a quick test in R:

> y <- rnorm( 1000, 100, 20 )

1000 items of (output) data

> residuals <- rnorm( 1000, 0, 3 )

normally distributed residuals

> pred1 <- y + residuals

one predicator

> pred2 <- y + residuals * 5

second predictor with perfectly correlated, but larger magnitude,
residuals

> cor( pred1, pred2 )
[1] 0.8779349

correlation coefficient of raw predicted values

> cor( pred1-y, pred2-y )
[1] 1

correlation coefficient of residuals.

Cheers,

Ross-c



Relevant Pages

  • Re: Critical t-values in large samples
    ... How do you adjust the critical t-values? ... You should ask yourself, specificaly, are the standard errors being ... about the distribution of the residuals, ... Thus you should seek reasons for why there might be correlation in the ...
    (sci.stat.edu)
  • Re: Critical t-values in large samples
    ... What if my test statistics are measured using a consistent ... values of my statistics already account for possible correlation? ... about the distribution of the residuals, ... If you have used a consistent variance-covariance matrix of the ...
    (sci.stat.edu)
  • Re: Critical t-values in large samples
    ... What if my test statistics are measured using a consistent ... values of my statistics already account for possible correlation? ... You should ask yourself, specificaly, are the standard errors being ... about the distribution of the residuals, ...
    (sci.stat.edu)
  • Re: Comparing predictors
    ... > I liked Ross's suggestion about comparing residuals. ... classifiers that I know to be similar, ... For other pairs of classifiers the correlation can be low. ...
    (sci.stat.math)
  • Re: How to discover the effect of X1, X2, ... , Xn on Y (Y is dependant on the X variables)?
    ... > Correlation are regression are different things. ... You could do something that emulates the partial correlation ... fit a relation of Y to Xi, formally or informally, and construct ... look for relationships of the residuals to the other Xi by ...
    (sci.stat.math)