Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. import time
  2. import pandas
  3. %%time
  4. # a=time.time()
  5. pandas_csv_data = pandas.read_csv("order_products__prior.csv")
  6. # print(time.time()-a)
  7.  
  8. import modin.pandas as pd
  9. %%time
  10. # a=time.time()
  11. modin_csv_data =pd.read_csv("order_products__prior.csv")
  12. # print(time.time()-a)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement