Post

[Python] df 차원 확인 :: df.ndim & df.shape

[Python] df 차원 확인 :: df.ndim & df.shape
Reference Pandas In Action

1. DataFrame 차원 확인 :: df.ndim & df.shape

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 차원을 Int형태로 :: df.ndim

1
df.ndim
  • 축/배열 차원의 수를 int로 반환
1
nba.ndim  # nba의 차원의 수
1
2

1-2. df 차원을 Tuple 형태로 :: df.shape

1
df.shape
  • DataFrame의 차원을 나타내는 튜플을 반환
1
nba.shape # nba의 차원 형태
1
(450, 5)
This post is licensed under CC BY 4.0 by the author.