Post

[Python] df 행/열 별 유효값 개수 :: df.count()

Reference Pandas In Action

df 행/열 별 유효값 개수 :: df.count()

1
2
3
4
5
6
7
import pandas as pd

nba = pd.read_csv(
    './Data/nba.csv',
    parse_dates = ['Birthday']  # 'Birthday'의 데이터 유형을 날짜/시간(datetime)으로 강제 변환
)
nba
 NameTeamPositionBirthdaySalary
0Shake MiltonPhiladelphia 76ersSG1996-09-261445697
1Christian WoodDetroit PistonsPF1995-09-271645357
2PJ WashingtonCharlotte HornetsPF1998-08-233831840
3Derrick RoseDetroit PistonsPG1988-10-047317074
4Marial ShayokPhiladelphia 76ersG1995-07-2679568
445Austin RiversHouston RocketsPG1992-08-012174310
446Harry GilesSacramento KingsPF1998-04-222578800
447Robin LopezMilwaukee BucksC1988-04-014767000
448Collin SextonCleveland CavaliersPG1999-01-044764960
449Ricky RubioPhoenix SunsPG1990-10-2116200000

450 rows × 5 columns

1
2
3
df.count(
    axis = 0  # 0 or 'index' : 행 | 1 or 'columns' : 열
)
  • 각 열 또는 행에 대해 NA가 아닌 셀 계산
  • Option
    • axis : 축
1
2
nba.count(axis = 0)
nba.count()          # nba의 각 열당 유효한 값의 개수
1
2
3
4
5
6
Name        450
Team        450
Position    450
Birthday    450
Salary      450
dtype: int64
1
nba.count(axis = 1)  # nba의 각 행당 유효한 값의 개수
1
2
3
4
5
6
7
8
9
10
11
12
0      5
1      5
2      5
3      5
4      5
      ..
445    5
446    5
447    5
448    5
449    5
Length: 450, dtype: int64
This post is licensed under CC BY 4.0 by the author.