Created
April 1, 2019 21:06
-
-
Save curiousily/b291cb0c4e93616dc3e4a8953dc37eb2 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
x = df_train['GrLivArea'] | |
y = df_train['SalePrice'] | |
x = (x - x.mean()) / x.std() | |
x = np.c_[np.ones(x.shape[0]), x] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment