Feature Importance - An Interesting Visualization

With just these 2 lines of code, I came up with this interesting visualization for df_keep columns

import seaborn as sea
sea.pairplot(df_keep[df_keep.columns],size=2);

1 Like

Can you please elaborate more?
How can we interpret the charts between each y and x entity?