glmfit: Iteration limit reached
Ältere Kommentare anzeigen
Hello, I built a logistic model using glmfit:
[b,dev,stats]=glmfit(X,Y,'binomial','link','logit');
but I have obtained the warning: iteration limit reached. And some variables have large coefficients, so the produced model is not correct. I have 41 features and 2904 observations. The 2 classes (0 and 1) are already balanced. I have attached the matrix X and Y.
Can someone help me? Thanks.
Antworten (1)
the cyclist
am 6 Okt. 2023
Bearbeitet: the cyclist
am 6 Okt. 2023
1 Stimme
The first thing I notice is that the X data has missing values (NaN).
MATLAB automatically removes observations (i.e. rows) with missing values. That does not seem to yield a good model.
Removing variables (i.e. columns) with missing data does bring all the coefficients down into roughly the same range.
It's unclear without more context what is the best way to handle your missing data, but I would focus on that first.
Kategorien
Mehr zu Univariate Discrete Distributions finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!