Advertisement
elena1234

Check about Multicollinearity in Python

Jul 19th, 2023 (edited)
848
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | Source Code | 0 0
  1. # Relationships between features
  2. # Be careful about Multicollinearity
  3. sns.pairplot(df,diag_kind='kde')
  4. plt.show()
  5.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement