|
|
|
|
|
by fats_tromino
3809 days ago
|
|
Just as two quick comments, confidence intervals != prediction intervals. One gives a range around a true mean value, the other gives a range around where the variable may actually fall (prediction intervals are bigger). You may also want to mention adjusted R^2 as a measure of quality of the model. I've never heard of AICR before, the standard metrics for quality of the model are AIC/BIC (and sometimes Mallus Cp). Edit: fixed sloppy wording about confidence interval. |
|
The r^2 and AICR comments reflect the fact that these docs were built around Statwing's regression capabilities, which default to m-estimation instead of OLS. There's no adjusted r^2 for that, which I agree is a better measure when available, and it uses AICR, where the R stands for "robust". But still a good catch, since I didn't caveat ahead of time that we were only talking about robust methods (and we don't note it in the docs).
Much appreciated.