I have been analyzing some genetic data and recently ran into a problem trying to perform a multivariable analysis. I have a dichotomous outcome (disease or no disease) I've identified 4 separate genes that meet a threshold for inclusion in a multivariable analysis, and all are expressed as dichotomous data (present or absent). When I run a logistic regression, I am told the data will not converge (see below);
. logistic disease var1 var2 var3 var4
convergence not achieved
Logistic regression Number of obs = 23
LR chi2(1) = 22.72
Prob > chi2 = 0.0000
Log likelihood = -2.7725887 Pseudo R2 = 0.8038
------------------------------------------------------------------------------
disease | Odds Ratio Std. Err. z P>|z| [95% Conf. Interval]
-------------+----------------------------------------------------------------
var1 | 2.00e+08 4.01e+08 9.56 0.000 3974457 1.01e+10
var2 | 1.34e+08 . . . . .
var3 | 1.01e-16 . . . . .
var4 | 6.73e-17 . . . . .
_cons | 7.42e+07 1.05e+08 12.81 0.000 4639470 1.19e+09
------------------------------------------------------------------------------
Note: 14 failures and 5 successes completely determined.
convergence not achieved
r(430);
Any thoughts on the root of my problem would be appreciated.
Thanks.
. logistic disease var1 var2 var3 var4
convergence not achieved
Logistic regression Number of obs = 23
LR chi2(1) = 22.72
Prob > chi2 = 0.0000
Log likelihood = -2.7725887 Pseudo R2 = 0.8038
------------------------------------------------------------------------------
disease | Odds Ratio Std. Err. z P>|z| [95% Conf. Interval]
-------------+----------------------------------------------------------------
var1 | 2.00e+08 4.01e+08 9.56 0.000 3974457 1.01e+10
var2 | 1.34e+08 . . . . .
var3 | 1.01e-16 . . . . .
var4 | 6.73e-17 . . . . .
_cons | 7.42e+07 1.05e+08 12.81 0.000 4639470 1.19e+09
------------------------------------------------------------------------------
Note: 14 failures and 5 successes completely determined.
convergence not achieved
r(430);
Any thoughts on the root of my problem would be appreciated.
Thanks.
Comment