인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

Inflearn Community Q&A

freedom07's profile image
freedom07

asked

Getting started with Python data analysis using public data

[15/20] Understanding tidy data and creating two datasets in the same format with pandas' melt

결측치 볼 때 series형태에서는

Written on

·

207

1

강의 2:49 에서 선생님화면에서는 결과가 다 보이는데

저는 저렇게 중간에 ... 나와서 중간을 확인을 못하는데 

다 확인하고 싶으면 어떻게 해야 하나요? ㅠ

pd.pd.options.display.max_columns =25

pd.options.display.max_rows =20 

위의 코드도 이미 실행되어 있는데도 

안되네요..

series형태라서 그런가요?

저건 table형태로 나올 때만 적용되는 건가요?~

만약 그렇다면..series형태에서는 다 보려면 어떻게 하는 지 알려주시길 부탁드릴게요 ㅠ

numpypandaspython

Answer 2

0

freedom07님의 프로필 이미지
freedom07
Questioner

아 그렇군요 ! 감사합니다^^!!

0

todaycode님의 프로필 이미지
todaycode
Instructor

pd.options.display.max_rows = None  으로 설정해 주시면 줄임표시 없이 모두 표시 됩니다.

freedom07's profile image
freedom07

asked

Ask a question