Skip to content

Instantly share code, notes, and snippets.

@oscar-defelice
Created March 15, 2021 16:36
Show Gist options
  • Save oscar-defelice/cf76b3d1022ab05b95fe0897d22babcd to your computer and use it in GitHub Desktop.
Save oscar-defelice/cf76b3d1022ab05b95fe0897d22babcd to your computer and use it in GitHub Desktop.
# your client is so famous that has a dataset already in sklearn
from sklearn.datasets import load_boston
boston_dataset = load_boston()
df = pd.DataFrame(boston_dataset.data, columns=boston_dataset.feature_names)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment