Created
November 1, 2019 03:19
-
-
Save GeorgeSeif/c4a31d222b5dc5fdd025f72130175eeb 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
import pandas as pd | |
df = pd.read_csv("esea_master_dmg_demos.part1.csv") | |
s = time.time() | |
df = df.fillna(value=0) | |
e = time.time() | |
print("Pandas Concat Time = {}".format(e-s)) | |
import modin.pandas as pd | |
df = pd.read_csv("esea_master_dmg_demos.part1.csv") | |
s = time.time() | |
df = df.fillna(value=0) | |
e = time.time() | |
print("Modin Concat Time = {}".format(e-s)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment