7 votos

R-cuadrado valor cuando se utiliza desplazamiento -- ¿cómo se calcula?

Tengo un modelo lineal con una puntuación de la prueba de variable como una variable dependiente y un vector de covariables. Tengo un desplazamiento variable en el modelo.

Así que la fórmula es=

$$\text{score}_i = B_0 + B_xX_x + offset_i + e_i$$

or equivalently:

$$\text{score}_i - \text{offset}_i = B_0 + B_xX_x + e_i$$

I estimate this in R using

lm(score ~ covariates, offset=offset, data=data)

When running this, I get an $R^2$ of $0.55$.

Then, I create a different dependent variable, subtracting the offset manually, so the formula is:

$$\text{score-offset}_i = B_0 + B_xX_x + e_i$$

I get a different $R^2$ -- substantially less: $0.10$.

I'd like to know why these calculations are different. Obviously, this is a large difference. Prof. Ripley here http://r.789695.n4.nabble.com/Calculation-of-r-squared-for-linear-model-with-offset-td797608.html notes that $R^2$ se calcula de forma diferente en la presencia de un desplazamiento, pero no estoy seguro de cómo.

Alguien puede arrojar luz? Gracias.

5voto

jldugger Puntos 7490

$R^2$ se calcula en términos de la suma de los cuadrados de los valores ajustados $\text{MSS}=\sum (\hat{y}_i - \bar y_i)^2$ (suponiendo un término de intersección está presente) y la suma de los cuadrados de los residuos de $\text{RSS} = \sum \left(y_i - \hat{y}_i\right)^2$

$$R^2 = \frac{\text{MSS}}{\text{MSS} + \text{RSS}}:$$

it is the fraction of the total sum of squares "explained" by the fit. Whether you subtract an offset $z_i$ or declare it as variable in the offset parameter, the model will be equivalent--it produces the same residuals--but in the former case the values to be predicted are those of $y_i-z_i$; that is, $z_i$ has been subtracted from $\hat y_i$. The sum of squares to be "explained" is thereby changed when the offset is manually subtracted (and the software has no way of knowing that). $\text{MSS}$ could increase or decrease, resulting either in an increase or decrease in $R^2$, respectivamente.

i-Ciencias.com

I-Ciencias es una comunidad de estudiantes y amantes de la ciencia en la que puedes resolver tus problemas y dudas.
Puedes consultar las preguntas de otros usuarios, hacer tus propias preguntas o resolver las de los demás.

Powered by:

X