Nella regressione lineare multipla, posso capire che le correlazioni tra residuo e predittori sono zero, ma qual è la correlazione attesa tra residuo e variabile criterio? Dovrebbe essere zero o fortemente correlato? Qual'è il significato di questo?
Nella regressione lineare multipla, posso capire che le correlazioni tra residuo e predittori sono zero, ma qual è la correlazione attesa tra residuo e variabile criterio? Dovrebbe essere zero o fortemente correlato? Qual'è il significato di questo?
Risposte:
Nel modello di regressione:
y i = x ′ i β + u i
il solito presupposto è che , è un campione iid. presupposto che ed ha un rango massimo, lo stimatore ordinario dei minimi quadrati:( Y i , Ix i , u i ) i = 1 , . . . , n E x i u i = 0 E ( x i x ′ i )
Β =( n Σ i = 1 x i x ' i )-1Σi=1xiyi
è coerente e asintoticamente normale. La covarianza prevista tra un residuo e la variabile di risposta è quindi:
E y i u i = E ( x ′ i β + u i ) u i = E u 2 i
Se supponiamo inoltre che ed , possiamo calcolare la covarianza attesa tra e la sua regressione residua:E(ui|x1,...,xn)=0
Eyiˆui=Eyi(yi−x′iˆβ)=E(x′iβ+ui)(ui−xi(ˆβ−β))=E(u2i)(1−Ex′i(n∑j=1xjx′j)−1xi)
Ora per ottenere la correlazione dobbiamo calcolare e . Si scopre cheVar(yi)
Var(ˆui)=E(yiˆui),
quindi
Corr(yi,ˆui)=√1−Ex′i(n∑j=1xjx′j)−1xi
Ora il termine viene dalla diagonale della matrice del cappello , dove . La matrice è idempotente, quindi soddisfa una proprietà seguentex′i(∑nj=1xjx′j)−1xi
trace(H)=∑ihii=rank(H),
dove è il termine diagonale di . Il è il numero di variabili linearmente indipendenti in , che di solito è il numero di variabili. Chiamiamolo . Il numero di è la dimensione del campione . Quindi abbiamo termini non negativi che dovrebbero riassumere fino a . Di solito è molto più grande di , quindi molto sarebbe vicino allo zero, il che significa che la correlazione tra la variabile residua e la risposta sarebbe vicina a 1 per la maggior parte delle osservazioni.hii
Il termine viene utilizzato anche in vari diagnostici di regressione per determinare osservazioni influenti.hii
La correlazione dipende da R 2 . Se R 2 è alto, significa che gran parte della variazione nella variabile dipendente può essere attribuita alla variazione nelle variabili indipendenti e NON al termine dell'errore.
Tuttavia, se R 2 è basso, significa che gran parte della variazione nella variabile dipendente non è correlata alla variazione nelle variabili indipendenti e quindi deve essere correlata al termine di errore.
Considera il seguente modello:
Y = X β + ε , dove Y e X non sono correlati.
Supponendo condizioni di regolarità sufficienti per il CLT da mantenere.
Β convergono a0, poichéXeYsono incorrelati. Pertanto Y =X β sarà sempre zero. Così, l'ε:=Y - Y =Y-0=Y. εeYsono perfettamente correlati !!!
Tenendo tutto il resto fisso, aumentando R 2 diminuirà la correlazione tra l'errore e la dipendenza. Una forte correlazione non è necessariamente causa di allarme. Questo può semplicemente significare che il processo sottostante è rumoroso. Tuttavia, una R 2 bassa (e quindi un'elevata correlazione tra errore e dipendente) può essere dovuta a errata specificazione del modello.
Trovo questo argomento piuttosto interessante e le risposte attuali sono purtroppo incomplete o in parte fuorvianti, nonostante la pertinenza e l'elevata popolarità di questa domanda.
Per definizione del quadro OLS classica dovrebbe esserci alcuna relazione tra y e u
Cov ( y , u | X ) = Cov ( P y , M y | X ) = Cov ( P y , ( I - P ) y | X ) = P Cov ( y , y ) ( I - P ) ' = P σ 2 - P σ 2 = 0
Dove M e P sono matrici idempotenti definiti come: P = X ( X ' X ) X ' e M = I - P .
Questo risultato si basa sulla rigorosa esogeneità e omoschedasticità e praticamente si tiene in grandi campioni. L'intuizione per la loro uncorrelatedness è il seguente: I valori stimati y condizionato X sono centrate attorno u , che sono ritenuti come indipendenti e identicamente distribuite. Tuttavia, qualsiasi deviazione dalla stretta esogeneità e omoschedasticità assunzione potrebbe causare variabili esplicative siano endogeno e stimolare una correlazione latente tra u e y .
Ora la correlazione tra i residui u e "originale" y è una storia completamente diversa:
Cov ( y , u | X ) = Cov ( y M y | x ) = Cov ( y , ( 1 - P ) y ) = Cov ( y , y ) ( 1 - P ) = σ 2 M
Alcuni verifica nella teoria e sappiamo che questa matrice di covarianza è identica alla matrice di covarianza del residuo u stessa (prova omessa). Abbiamo:
Var ( u ) = σ 2 M = Cov ( y , u | X )
Se vogliamo calcolare la (scalare) covarianza tra y e u come richiesto dal PO, si ottiene:
⟹COV s c a l a r ( y , u | X ) = Var ( u | X ) = ( Σ u 2 i ) / N
(= sommando le voci diagonali della matrice di covarianza e dividendole per N)
La formula sopra indica un punto interessante. Se ci prova il rapporto regredendo y sui residui u (+ costante), il coefficiente di pendenza β u , y = 1 , che può essere facilmente derivare quando si divide l'espressione sopra del Var ( u | X ) .
D'altra parte, la correlazione è la covarianza standardizzata dalle rispettive deviazioni standard. Ora, la matrice varianza dei residui è σ 2 M , mentre la varianza di y è σ 2 I . La correlazione Corr ( y , u ) diventa quindi:
Corr ( y , u ) = Var ( u )√Var ( u ) var ( y ) =√Var ( u )Var(y)=√Var(û)σ2
This is the core result which ought to hold in a linear regression. The intuition is that the Corr(y,û)
Corr(y,û)=1√1+Var(^y)Var(û)
The are two forces here at work. If we have a great fit of the regression line, the correlation is expected to be low due to Var(û)≈0
An attempt conclude the question: The correlation between y
Notwithstanding this exercise may give us some intuition on the workings and inherent theoretical assumptions of an OLS regression, we rarely evaluate the correlation between y
For example, I would like to point out a statement made by a previous poster here. It is said that,
"If your residuals are correlated with your independent variables, then your model is heteroskedastic..."
I think that may not be entirely valid in this context. Believe it or not, but the OLS residuals û
X′ui=X′My=X′(I−P)y=X′y−X′Py
However, you may have heard claims that an explanatory variable is correlated with the error term. Notice that such claims are based on assumptions about the whole population with a true underlying regression model, that we do not observe first hand. Consequently, checking the correlation between y
The Adam's answer is wrong. Even with a model that fits data perfectly, you can still get high correlation between residuals and dependent variable. That's the reason no regression book asks you to check this correlation. You can find the answer on Dr. Draper's "Applied Regression Analysis" book.
So, the residuals are your unexplained variance, the difference between your model's predictions and the actual outcome you're modeling. In practice, few models produced through linear regression will have all residuals close to zero unless linear regression is being used to analyze a mechanical or fixed process.
Ideally, the residuals from your model should be random, meaning they should not be correlated with either your independent or dependent variables (what you term the criterion variable). In linear regression, your error term is normally distributed, so your residuals should also be normally distributed as well. If you have significant outliers, or If your residuals are correlated with either your dependent variable or your independent variables, then you have a problem with your model.
If you have significant outliers and non-normal distribution of your residuals, then the outliers may be skewing your weights (Betas), and I would suggest calculating DFBETAS to check the influence of your observations on your weights. If your residuals are correlated with your dependent variable, then there is a significantly large amount of unexplained variance that you are not accounting for. You may also see this if you're analyzing repeated observations of the same thing, due to autocorrelation. This can be checked for by seeing if your residuals are correlated with your time or index variable. If your residuals are correlated with your independent variables, then your model is heteroskedastic (see: http://en.wikipedia.org/wiki/Heteroscedasticity). You should check (if you haven't already) if your input variables are normally distributed, and if not, then you should consider scaling or transforming your data (the most common kinds are log and square-root) in order to make it more normalized.
In the case of both, your residuals, and your independent variables, you should take a QQ-Plot, as well as perform a Kolmogorov-Smirnov test (this particular implementation is sometimes referred to as the Lilliefors test) to make sure that your values fit a normal distribution.
Three things that are quick and may be helpful in dealing with this problem, are examining the median of your residuals, it should be as close to zero as possible (the mean will almost always be zero as a result of how the error term is fitted in linear regression), a Durbin-Watson test for autocorrelation in your residuals (especially as I mentioned before, if you are looking at multiple observations of the same things), and performing a partial residual plot will help you look for heteroscedasticity and outliers.