fitlm - change the output of this function
조회 수: 5 (최근 30일)
이전 댓글 표시
Hey!
When I use fitlm I always get the following measurement criteria displayed: Number of observations: Error degrees of freedom: Root Mean Squared Error: R-squared: Adjusted R-Squared F-statistic vs. constant model: p-value
Is it possible to specify which ones I want to see and also is it possible to add the MSE and MAE? If so, how could I do it? Thank you
댓글 수: 0
채택된 답변
Shashank Prasanna
2014년 7월 9일
편집: Shashank Prasanna
2014년 7월 9일
Tania, you get everything by default. If you want to be specific you may have to suppress the commandline output (using semicolon, ; ) and then displaying it yourself using sprintf or disp:
Access properties like so:
mdl = fitlm(X,y);
mdl.Rsquared
댓글 수: 2
Shashank Prasanna
2014년 7월 9일
Take a look at the examples in the link I showed you and give it a try. After that if you have a specific questions, we may be able to help you better.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Analysis of Variance and Covariance에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!