dataframe, head 사용시 모든 컬럼 보이도록 하려면
아래 코드를 미리 실행시켜주면 된다.
To show all columns when use head() or tail()
Excute those command to show all of columns.
pd.set_option('display.max_columns', None)
pd.set_option('display.max_rows', None)
반응형
'IT > Python' 카테고리의 다른 글
python re sub remove special characters (0) | 2022.11.17 |
---|---|
aws s3 upload image using boto3, 이미지 올리기 (0) | 2019.04.20 |
tensorflow Keras - not_equal, cast Test (0) | 2019.03.13 |
keras Masking Test (0) | 2019.03.13 |
여러개의 DB를 Django 장고에 연동시키기 (0) | 2018.11.12 |