Ming's blog

(python)jupyter notebook에 모든 행과 열을 출력하고 싶을 때 본문

프로그래밍 기본 문법/Python

(python)jupyter notebook에 모든 행과 열을 출력하고 싶을 때

H._.ming 2021. 3. 12. 20:08
반응형

jupyter notebook에서 데이터를 불러올때, 행과 열이 많은 경우, 중간 부분이 생략되어서 나오는 경우가 많습니다.

 

이때, 모든 행과 열을 보고 싶은 경우가 있을 때, 이를 해결할수 있는 방법에 대해 포스팅 하겠습니다.

 

sckit-learn 패키지에 내장되어 있는 dataset 중, load_breast_cancer dataset을 이용해보겠습니다.

 

 

다음 코드로 데이터를 출력하면 아래와 같은 형태로 행의 일부와 열의 일부가 출력됩니다. 

from sklearn import datasets
import pandas as pd
breast_cancer_data = pd.DataFrame(datasets.load_breast_cancer().data)
breast_cancer_data.columns = datasets.load_breast_cancer().feature_names
breast_cancer_data

 

모든 행/열을 보고 싶을 때 아래의 코드를 이용하면 생략 없이 모든 행/열을 출력할 수 있습니다.

import pandas as pd
pd.set_option('display.max_columns', None) ## 모든 열 출력
pd.set_option('display.max_rows', None) ## 모든 행 출력
breast_cancer_data

위의 코드에서 None 자리에 보고싶은 행/열 개수를 숫자를 입력해서 출력을 할 수도 있습니다.

반응형
Comments