Guest User

Untitled

a guest
May 22nd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. # Finding out the correlation values of all the features with respect to the 'label' feature
  2. corr = df.corr()
  3. print (corr['label'].sort_values(ascending = False))
Add Comment
Please, Sign In to add comment