Skip to content

Instantly share code, notes, and snippets.

@selva86
Created October 3, 2021 16:47
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 selva86/8e50d9737365a4ff6e29036738cf6d29 to your computer and use it in GitHub Desktop.
Save selva86/8e50d9737365a4ff6e29036738cf6d29 to your computer and use it in GitHub Desktop.
import pandas as pd
import numpy as np
from sklearn.datasets import load_boston
df = load_boston()
challenge_df = pd.DataFrame(df.data)
challenge_df.columns = df.feature_names
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment