Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created December 20, 2020 07:24
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 amankharwal/44005067659bc29f7e3f7930d1d31beb to your computer and use it in GitHub Desktop.
Save amankharwal/44005067659bc29f7e3f7930d1d31beb to your computer and use it in GitHub Desktop.
import pandas as pd
housing = pd.read_csv("https://raw.githubusercontent.com/ageron/handson-ml/master/datasets/housing/housing.csv")
housing.plot(kind='scatter', x='longitude', y='latitude', alpha=0.4, s=housing['population']/100, label='population',
figsize=(12, 8), c='median_house_value', cmap=plt.get_cmap('jet'), colorbar=True)
plt.legend()
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment