Advertisement
Guest User

Untitled

a guest
Apr 26th, 2019
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. # We created X and y columns for training dataset while y column for dataset to predict will
  2. # be generated by our model in final step
  3. X = df_train.drop(["Price"], axis=1)
  4. y = np.log1p(df_train["Price"])
  5. # y = df_train["Price"]
  6. X_to_predict = df_to_predict
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement