Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. # Importing the essential modules/packages
  2.  
  3. import numpy as np
  4. import pandas as pd
  5. import os
  6.  
  7. hp_train = pd.read_csv("House_prices_train.csv")
  8. hp_test = pd.read_csv("House_prices_test.csv")
  9.  
  10. # Sneakpeak of train data
  11. print("Shape of training data: ",hp_train.shape)
  12. hp_train.head()
  13.  
  14. # Sneakpeak of test data
  15. print("Shape of test data: ",hp_test.shape)
  16. hp_test.head()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement