1. 셀 모든 내용 출력
pandas를 사용할 때 셀의 내용이 길면 잘려서 나오는게 기본 세팅이다(truncated).
셀의 모든 내용을 출력하고 싶으면 아래 설정을 사용하면 된다.
import pandas as pd
pd.set_option('display.max_colwidth', None)
2. 모든 row, column 출력
pandas.set_option('display.max_rows', None) # 항상 모두 출력
pandas.set_option('display.max_rows', 10) # 항상 10개만 출력
pandas.set_option('display.max_columns', None) # 항상 모두 출력
pandas.set_option('display.max_columns', 10) # 항상 10개만 출력
728x90
'python 메모' 카테고리의 다른 글
[jupyter] notebook 파일 cli로 중단없이 실행시키기 (1) | 2022.07.30 |
---|---|
[numpy] np.take, np.take_along_axis (0) | 2022.07.29 |
[예외처리] try, except, finally (0) | 2022.07.18 |
[transformers] tokenizer 결과 (0) | 2022.04.04 |
[asyncio+aiohttp] 여러 API 비동기 호출 결과 얻기 (0) | 2022.02.10 |