I have six non-linear independent continuous variables that I would like to include in my logistic regression to estimated adjusted ORs.
I performed the logistic regression using this syntax code:
__
LOGISTIC REGRESSION VARIABLES VariableX
/METHOD=ENTER Factor1 Factor2 Factor3 Factor4 Factor5 Factor6
/PRINT=GOODFIT CI(95)
/CRITERIA=PIN(0.05) POUT(0.10) ITERATE(20) CUT(0.5).
____
But the output results look messed up, I get numbers like "7937E.+12" and zeros for Exp(B) for the different indepedent factors.
Any solution? What is the right way to perform multivariable regression analysis for such dataset?