Skip to content

Instantly share code, notes, and snippets.

@Beomi
Created August 20, 2019 05:09
Show Gist options
  • Save Beomi/1cc6675366fcc8a1a33d4cd29b54743f to your computer and use it in GitHub Desktop.
Save Beomi/1cc6675366fcc8a1a33d4cd29b54743f to your computer and use it in GitHub Desktop.
Pandas 3종세트 + Dask
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