How to get the sum of squares in GLM model summary ?
9 ビュー (過去 30 日間)
表示 古いコメント
採用された回答
Ive J
2022 年 4 月 6 日
You can get SST, SSE and SSR:
mdl = fitglm(rand(100, 2), randi([0 1], 100, 1), 'dist', 'binomial', 'link', 'logit');
mdl.SSE
mdl.SSR
mdl.SST
その他の回答 (0 件)
参考
カテゴリ
Find more on ANOVA in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!