Guest User

Untitled

a guest
Dec 7th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. import pandas as pd
  2.  
  3. train_file='C:UsersDDautelAnaconda2PycharmProjectsKaggleTitanicRUN.csv'
  4. test_file='C:UsersDDautelAnaconda2PycharmProjectsKaggleTitanicRUN2.csv'
  5. train=pd.read_csv(train_file)
  6. test=pd.read_csv(test_file)
  7.  
  8.  
  9. print train.describe()
  10. print test.describe()
Add Comment
Please, Sign In to add comment