Questo tipo di situazione può essere gestito da un test F standard per i modelli nidificati . Poiché si desidera testare entrambi i parametri su un modello null con parametri fissi, le ipotesi sono:
H0: β = [ 01]HUN: β ≠ [ 01] .
Il test F prevede l'adattamento di entrambi i modelli e il confronto della somma dei quadrati residua, che sono:
SSE0= ∑i = 1n( yio- xio)2SSEUN= ∑i = 1n( yio- β^0- β^1Xio)2
La statistica del test è:
F≡ F( y , x ) = n - 22⋅ SSE0- SSEUNSSEUN.
Il valore p corrispondente è:
p ≡ p ( y , x ) = ∫F( y , x )∞F-Dist ( r | 2 , n - 2 ) d r .
Implementazione in R: Supponiamo che i tuoi dati siano in un frame di dati chiamato DATA
con variabili chiamate y
e x
. L'F-test può essere eseguito manualmente con il seguente codice. Nei dati simulati simulati che ho usato, puoi vedere che i coefficienti stimati sono vicini a quelli dell'ipotesi nulla e il valore p del test non mostra prove significative per falsificare l'ipotesi nulla che la vera funzione di regressione sia la funzione di identità.
#Generate mock data (you can substitute your data if you prefer)
set.seed(12345);
n <- 1000;
x <- rnorm(n, mean = 0, sd = 5);
e <- rnorm(n, mean = 0, sd = 2/sqrt(1+abs(x)));
y <- x + e;
DATA <- data.frame(y = y, x = x);
#Fit initial regression model
MODEL <- lm(y ~ x, data = DATA);
#Calculate test statistic
SSE0 <- sum((DATA$y-DATA$x)^2);
SSEA <- sum(MODEL$residuals^2);
F_STAT <- ((n-2)/2)*((SSE0 - SSEA)/SSEA);
P_VAL <- pf(q = F_STAT, df1 = 2, df2 = n-2, lower.tail = FALSE);
#Plot the data and show test outcome
plot(DATA$x, DATA$y,
main = 'All Residuals',
sub = paste0('(Test against identity function - F-Stat = ',
sprintf("%.4f", F_STAT), ', p-value = ', sprintf("%.4f", P_VAL), ')'),
xlab = 'Dataset #1 Normalized residuals',
ylab = 'Dataset #2 Normalized residuals');
abline(lm(y ~ x, DATA), col = 'red', lty = 2, lwd = 2);
L' summary
output e plot
per questi dati è simile al seguente:
summary(MODEL);
Call:
lm(formula = y ~ x, data = DATA)
Residuals:
Min 1Q Median 3Q Max
-4.8276 -0.6742 0.0043 0.6703 5.1462
Coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept) -0.02784 0.03552 -0.784 0.433
x 1.00507 0.00711 141.370 <2e-16 ***
---
Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1
Residual standard error: 1.122 on 998 degrees of freedom
Multiple R-squared: 0.9524, Adjusted R-squared: 0.9524
F-statistic: 1.999e+04 on 1 and 998 DF, p-value: < 2.2e-16
F_STAT;
[1] 0.5370824
P_VAL;
[1] 0.5846198