Post

[Python] df 데이터 유형

[Python] df 데이터 유형
Reference Pandas In Action
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. df 데이터 유형 :: df.dtypes

1
df.dtypes
  • 데이터 프레임의 dtype을 변환
1
nba.dtypes   # nba 각 열의 형태(dtype)
1
2
3
4
5
6
Name                object
Team                object
Position            object
Birthday    datetime64[ns]
Salary               int64
dtype: object

1-1. df 데이터 유형별 개수 :: df.types.value_counts( )

1
nba.dtypes.value_counts() # nba 각 열의 형태(dtype)의 유형별 개수
1
2
3
4
object            3
datetime64[ns]    1
int64             1
dtype: int64
This post is licensed under CC BY 4.0 by the author.