Created
August 20, 2019 05:09
-
-
Save Beomi/1cc6675366fcc8a1a33d4cd29b54743f to your computer and use it in GitHub Desktop.
Pandas 3종세트 + Dask
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 | |
pd.set_option('display.max_columns', None) # or 1000 | |
pd.set_option('display.max_rows', 100) # or 1000 | |
pd.set_option('display.max_colwidth', -1) # or 199 | |
import pandas_explode | |
pandas_explode.patch() | |
from tqdm.auto import tqdm | |
tqdm.pandas() | |
from dask import dataframe as dd | |
from dask.distributed import Client |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment