INTERPRET REGRESSION RESULTS MATLAB
조회 수: 18 (최근 30일)
이전 댓글 표시
I have a question regarding interpretation of results using stepwise function to perform regression; If I run regression model using mdl= stepwiselm(X,y,'quadratic'), and the model returns in the form; y ~ 1 + x1*x2 + x1^2 +x2^2; Without showing the SE, t-Stat & pValue columns etc, the output I get is along the lines of;
Estimate
________
(Intercept) Value (A)
x1 Value (B)
x2 Value (C)
x1:x2 Value (D), for the x1*x2 term in model
x1^2 Value(E), for the x1^1 term in model
x2^2 Value(F), for the x^1 term in model
Am I correct to interpret that the output values associated with x1 & x2 term are represented only because they are lower order terms of the x1^2 & x2^2 terms, they are not stand alone terms to be used with the model?
i.e; my model would be y ~ A + D*x1*x2 + E*x1^2 +F*x2^2); or;
y ~ A + D*x1*x2 + B*E*x1^2 + C*F*x2^2;??
댓글 수: 0
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Regression에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!