Last active
June 24, 2021 09:29
-
-
Save ogyalcin/38938dbc5079906ad99d27546aaffbe9 to your computer and use it in GitHub Desktop.
This file contains 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
import numpy as np | |
import pandas as pd | |
from sklearn.datasets import load_boston | |
raw_data = load_boston() | |
df = pd.DataFrame(np.c_[raw_data['data'], raw_data['target']], | |
columns= np.append(raw_data['feature_names'], ['target'])) | |
df.head() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment