Skip to main content

df.shape

df.shape

Return a tuple representing the dimensionality of the DataFrame.

Returns:
A tuple representing the dimensionality of the DataFrame.
Return Type:
Tuple
Note:
df.shape[0] returns the number of observations (rows) in the DataFrame.
df.shape[1] returns the number of variables (columns) in the DataFrame.

pets
IndexIDSpeciesColorWeightAgeIs_CatOwner_Comment
0dog_001dogblack405False There are no bad dogs, only bad owners.
1cat_001catgolden1.50.2TrueMy best birthday present ever!!!
2cat_002catblack159True****All you need is love and a cat.****
3dog_002dogwhite802FalseLove is a wet nose and a wagging tail.
4dog_003dogblack250.5FalseBe the person your dog thinks you are.
5ham_001hamsterblack13FalseNo, thank you!
6ham_002hamstergolden0.250.2FalseNo, thank you!
7cat_003catblack100TrueNo, thank you!
pets.shape

(8, 7)

pets.shape[0]

8

pets.shape[1]

7