반응형
count
열 별 값이 몇 개인지 알려준다.
import pandas as pd
df = pd.DataFrame([[0, 1, 2], [3, 4, 5]], index=["r0", "r1"], columns=["c0", "c1", "c2"])
print(df)
출력
c0 c1 c2
r0 0 1 2
r1 3 4 5
print(df.count())
출력
c0 2
c1 2
c2 2
dtype: int64
반응형
'개발 Tools > 파이썬_Pandas & Numpy' 카테고리의 다른 글
파이썬 Pandas describe (통계정보) (0) | 2023.02.23 |
---|---|
파이썬 Pandas info (요약 정보) (0) | 2023.02.23 |
파이썬 Pandas shape (행열 꼴) (0) | 2023.02.23 |
파이썬 Pandas reset_index (행 초기화) (0) | 2023.02.23 |
파이썬 Pandas reindex (행 지정, 행 변경) (0) | 2023.02.23 |
댓글