I'm pretty sure it's been asked before, but I'm unable to find an answer
Running Logistic Regression using sklearn on python, I'm able to transform my dataset to its most important features using the Transform method
classf = linear_model.LogisticRegression()
func = classf.fit(Xtrain, ytrain)
reduced_train = func.transform(Xtrain)
How can I tell which features were selcted as most important? more generally how can I calculate the p-value of each feature in the dataset?