Skip to content

Instantly share code, notes, and snippets.

@rikturr
Last active October 13, 2020 19:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rikturr/d811a321efac5d8a8b28110c81927e73 to your computer and use it in GitHub Desktop.
Save rikturr/d811a321efac5d8a8b28110c81927e73 to your computer and use it in GitHub Desktop.
rapids-load-data
import cudf
import s3fs
s3 = s3fs.S3FileSystem(anon=True)
taxi = cudf.read_csv(
s3.open('s3://nyc-tlc/trip data/yellow_tripdata_2019-01.csv', mode='rb'),
parse_dates=['tpep_pickup_datetime', 'tpep_dropoff_datetime']
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment