I am trying to do logisitc regression, but have this issue - some of the p values are NaN
model = sm.Logit(y2,X2.astype(float))
result = model.fit()
result.summary()
Any ideas what to do?
I am trying to do logisitc regression, but have this issue - some of the p values are NaN
model = sm.Logit(y2,X2.astype(float))
result = model.fit()
result.summary()
Any ideas what to do?