Pandas에서 보는 옵션 설정하는 방법
2019. 5. 1. 17:33ㆍ분석 Python/Pandas Tip
도움이 되셨다면, 광고 한번만 눌러주세요. 블로그 관리에 큰 힘이 됩니다 ^^
from IPython.core.display import display, HTML
## 전체 구간을 넓게
display(HTML("<style>.container { width:100% !important; }</style>"))
## 각 컬럼 width 최대로
pd.set_option('display.max_colwidth', -1)
## rows 500
pd.set_option('display.max_rows', 500)
## columns
pd.set_option('display.max_columns', 500)
pd.set_option('display.width', 1000)
728x90
'분석 Python > Pandas Tip' 카테고리의 다른 글
[ Python ] modin 으로 pandas 더 빠르게 사용하기 (0) | 2019.09.28 |
---|---|
[ Python ] Pandas Lambda, apply를 활용하여 복잡한 로직 적용하기 (2) | 2019.07.13 |
[TIP / Pandas] Pandas를 보다 올바르게 사용하는 방법 (2) | 2019.05.23 |
Multiprocessing pandas package 2개 소개 (0) | 2019.05.08 |
multiprocessing으로 pandas replace 하면 더 빠를까? (2) | 2019.05.08 |