I ran this code:
import pandas as pd
import sklearn.linear_model as lm
...
regression = lm.LogisticRegressionCV(random_state=0, solver='lbfgs', multi_class='ovr').fit(X, y)
print(round(regression.score(X,y), 4))
The regression score is 0.9765. I'd like to find the attributes that are most predictive of the classification. It is merely identifying the highest values in regression.coef_?