Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. fig, axes = plt.subplots(1, 1, figsize=(12, 5))
  2.  
  3. clean_df['tax_class_at_sale'] = clean_df['tax_class_at_sale'].apply(str)
  4.  
  5. sns.relplot(x="sale_price_millions", y='gross_sqft_thousands', hue="neighborhood", data=clean_df, ax=axes)
  6.  
  7. fig.suptitle('Sale Price by Neighborhood', position=(.5,1.05), fontsize=20)
  8. fig.tight_layout()
  9. fig.show()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement