I would like to know how to show the table of statistics of the coefficients of the independent variables of a logistic model, in sklearn library
sklearn.linear_model.LogisticRegression.coef_
doesn’t work?– StillBuggin
@Eduardoalmeida, it was exactly what I wanted, thank you very much for your help. One more question, Is there any other code to identify the p-value of the variables??
– Pedro
Only run the significance tests directly using.
chi2()
– StillBuggin