Last active
December 2, 2019 23:53
-
-
Save GeorgeSeif/a5ad8d59070fdd6d2610bfeb92611b78 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### 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