Skip to content

Instantly share code, notes, and snippets.

@GeorgeSeif
Last active December 2, 2019 23:53
Show Gist options
  • Select an option

  • Save GeorgeSeif/a5ad8d59070fdd6d2610bfeb92611b78 to your computer and use it in GitHub Desktop.

Select an option

Save GeorgeSeif/a5ad8d59070fdd6d2610bfeb92611b78 to your computer and use it in GitHub Desktop.
### Read in the data with Pandas
import pandas as pd
s = time.time()
df = pd.read_csv("esea_master_dmg_demos.part1.csv")
e = time.time()
print("Pandas Loading Time = {}".format(e-s))
### Read in the data with Modin
import modin.pandas as pd
s = time.time()
df = pd.read_csv("esea_master_dmg_demos.part1.csv")
e = time.time()
print("Modin Loading Time = {}".format(e-s))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment