Corrélation python entre les fonctionnalités et la cible
df.corr()['Target']
Panicky Pony
df.corr()['Target']
import seaborn as sns
df = sns.load_dataset('iris')
#find corr with 'sepal_length'. This can be any valid column
df.corr()['sepal_length']