9951 explained code solutions for 126 technologies


python-pandasHow to count dataframe rows with condition


import pandas as pd

data = pd.DataFrame({
  'Vendor': ['US', 'US', 'US', 'KR', 'KR'],
  'Phone': ['ip5', 'ip6', 'ip8', 'sms', 'xi'],
  'Phone Price': [204, 304, 404, 405, 305]
})

res = len(data[data['Vendor'] == 'US'])ctrl + c
import pandas as pd

load Pandas module

pd.DataFrame

creates Pandas DataFrame object

len(

returns length (rows count) of a given dataframe

data['Vendor'] == 'US'

sample filter to use before counting rows

res

will contain filtered rows count