Created
June 14, 2020 00:22
-
-
Save securetorobert/6f3733a510f4b22bd970a1ee618400ad to your computer and use it in GitHub Desktop.
Extract predictors and labels from boston
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
predictors = train_df[['rm']] | |
target = train_df['medv'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment