Post

[Python] df 행 반환

[Python] df 행 반환
Reference Pandas In Action

1. df 행 반환

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-1. df 상위 행 :: df.head( )

1
2
3
df.head(
    n = 5
)
  • 처음 n개의 행을 반환
  • Option
    • n : 선택할 행 수
1
2
nba.head(n = 5)
nba.head() # nba중 상위 5개의 행
 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

1-2. df 하위 행 :: df.tail( )

1
2
3
df.tail(
    n = 5
)
  • 마지막 n행을 반환
  • Option
    • n : 선택할 행 수
1
nba.tail() # nba 중 하위 5개의 행
 NameTeamPositionBirthdaySalary
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

1-3. df 임의 행 :: df.sample()

1
2
3
4
df.sample(
    n = None
    random_state  = None
)
  • 객체의 축에서 임의의 항목 샘플을 반환
  • Option
    • n : 반환할 축의 항목 수
    • random_state : 난수 생성기의 시드 값
1
nba.sample(3) # nba 데이터중 무작위 3개의 행
 NameTeamPositionBirthdaySalary
420John HensonCleveland CavaliersC1990-12-289732396
235Al HorfordPhiladelphia 76ersC1986-06-0328000000
35Bradley BealWashington WizardsSG1993-06-2827093018
This post is licensed under CC BY 4.0 by the author.