Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. df = df_data[['SalePrice', 'MSSubClass', 'MSZoning', 'LotFrontage', 'LotArea', 'Street', 'Alley', 'LotShape', 'LandContour', 'Utilities']].copy()
  2.  
  3. corrmax = df.corr()
  4.  
  5. f, ax = plt.subplots(figsize=(16,12))
  6. sns.heatmap(corrmax, annot = True)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement