Pandas Count Rows In Column Code Example

Snippet 1

  count_row = df.shape[0]  # gives number of row count
count_col = df.shape[1]  # gives number of col count 

Snippet 2

  >>> df.count(axis='columns')
0    3
1    2
2    3
3    3
4    3
dtype: int64
 

Copyright © Code Fetcher 2020

 

 

Leave a comment

Your email address will not be published. Required fields are marked *