Guest User

Untitled

a guest
Jul 16th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. import turicreate as tc
  2.  
  3. checkins = ( tc.SFrame.read_csv( 'Gowalla_totalCheckins.txt',
  4. delimiter='\t', header=False )
  5. .rename( {'X1': 'user_id', 'X2' : 'checkin_ts',
  6. 'X3': 'lat', 'X4' : 'lon',
  7. 'X5': 'location_id'} )
  8. [["user_id", "location_id", "checkin_ts"]] )
Add Comment
Please, Sign In to add comment