Created
March 15, 2021 16:36
-
-
Save oscar-defelice/cf76b3d1022ab05b95fe0897d22babcd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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