Hi I get this output from R summary of an lm:
lm(formula = weight.nz ~ dChgs.nz)
Residuals:
Min 1Q Median 3Q Max
-15373.7 -664.4 243.3 1104.2 9137.2
Coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept) 1.853e+00 2.141e+01 0.087 0.931
dChgs.nz 7.036e+07 5.841e+06 12.046 <2e-16 ***
---
Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1
Residual standard error: 1814 on 7464 degrees of freedom
Multiple R-squared: 0.01907, Adjusted R-squared: 0.01894
F-statistic: 145.1 on 1 and 7464 DF, p-value: < 2.2e-16
I think small p suggest significance BUT r2 is tiny - so not significant.
I have read about problems of r2 on other questions on this subject that suggests I use stdError as a guide, but I am not sure how to interpret it. How do I use 1814 to tell me whether my result is significant or not?