Why my fitglm() function ignore the 'Options' input?
1 回表示 (過去 30 日間)
古いコメントを表示
% Initialize the predictors
predictor1 = normrnd(0,200,225,40);
predictor2 = normrnd(100,200,225,40);
predictor = [predictor1;predictor2];
% Initialize the response
outcome = [repmat(0,225,1); repmat(1,225,1)];
% Set the options
options = statset('fitglm');
options.MaxIter = 1000;
options.Display = 'iter';
mdl = fitglm(predictor, outcome, "Distribution", "binomial",'Options',options);
However these fitglm completely ignored the options I changed. I am running Matlab in version "23.2.0.2485118 (R2023b) Update 6" and Statistics and Machine learning toolbox in version 23.2.
P.S.: I have seen 'Options' in the function script of fitglm in my matlab, but cannot see it with automatic fullfil when I wrote the fitglm line.
Many thanks for the help!
edit:
I have changed options.Display = 'final', but still nothing was displayed.
6 件のコメント
Aquatris
2024 年 10 月 15 日
Looks like showing all the iterations is not supported for fitglm function as shown by @Cris LaPierre's answer.
採用された回答
Cris LaPierre
2024 年 10 月 15 日
Note that fitglm does not appear to support the 'iter' option. Looking at the documentation, the options listed for Display are 'off' or 'final'.
9 件のコメント
Cris LaPierre
2024 年 10 月 17 日
I have learned that the documentation is incorrect. fitglm does not support the 'Display' option at all. The documentation will be updated to remove reference to it.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で MATLAB Report Generator についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!