标签: python jupyter-notebook data-science
对数据进行逻辑回归,以便我可以预测谁对公司做出了回应,但由于“奇异矩阵”而出现错误
import statsmodels.api as sm logit = sm.Logit(train['responded'], train[train_cols]).fit()