Skip to content

Instantly share code, notes, and snippets.

@vivekpadia70
Created December 25, 2019 07:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vivekpadia70/d8ac7da9db0dfcd458bc672db3905b63 to your computer and use it in GitHub Desktop.
Save vivekpadia70/d8ac7da9db0dfcd458bc672db3905b63 to your computer and use it in GitHub Desktop.
plt.figure(figsize=(10,7), facecolor='w', edgecolor='k')
sns.scatterplot(full_df["Longtitude"], full_df["Lattitude"], hue=full_df["Price"], size=full_df["Landsize"])
plt.legend(bbox_to_anchor=(1.05, 1), loc=2, borderaxespad=0.2)
plt.title("Lattitude to Longitude with Price and Landsize")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment