What does the "stats" output from the REGRESS function mean in Statistics Toolbox 5.0.2 (R14SP2)?

6 次查看(过去 30 天)
When looking at the documentation for the REGRESS function by typing "doc regress" at the MATLAB prompt, it shows the syntax:
[b,bint,r,rint,stats] = regress(y,X)
In explaining the "stats" vector, it simply says "the vector stats contains the R2 statistic along with the F and p values for the regression." I would like a more detailed description of this vector.

采纳的回答

MathWorks Support Team
This change has been incorporated into the documentation in Release 14 Service Pack 3 (R14SP3). For previous releases, read below for any additional information:
The fifth return value of the REGRESS function in Statistics Toolbox 5.0.2 (R14SP2) is a 1-by-4 vector of doubles. It is defined as follows:
stats = [r2 F prob s2];
Each of these values are computed as described below:
- "r2" is the r-squared statistic defined as 1-SSE/TSS with SSE being the "error sum of squares" and TSS the "total sum of squares."
- "F" is the F-statistic.
- "prob" is the p-value of the F-statistic.
- "s2" is the estimator of error variance defined as the square of the root mean square error (RMSE) value.

更多回答(0 个)

标签

尚未输入任何标签。

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by