Advertisement
Guest User

Untitled

a guest
Dec 18th, 2014
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. inches,12,3,56,80,45
  2. tempF,60,45,32,80,52
  3.  
  4. import pandas as pd
  5. pd_obj = pd.read_csv('test_csv.csv', header=None, index_col=0)
  6.  
  7. 1 2 3 4 5
  8. 0
  9. inches 12 3 56 80 45
  10. tempF 60 45 32 80 52
  11.  
  12. 0 1 2 3 4
  13. inches 12 3 56 80 45
  14. tempF 60 45 32 80 52
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement