How to Count the Frequency of Rows Based on Multiple Columns in a Pandas DataFrame?

Susan Sarandon
Release: 2024-10-25 02:33:02
Original
180 people have browsed it

How to Count the Frequency of Rows Based on Multiple Columns in a Pandas DataFrame?

Get a Frequency Count Based on Multiple Dataframe Columns

To find the frequency of rows that appear multiple times in a dataframe, you can utilize the groupby operation with either size or count functions. Let's demonstrate this with an example dataframe:

import pandas as pd

# Sample dataframe
data = {'Group': ['Short', 'Short', 'Moderate', 'Moderate', 'Tall'], 'Size': ['Small', 'Small', 'Medium', 'Small', 'Large']}
df = pd.DataFrame(data)
Copy after login

Option 1: Using groupby and size

dfg = df.groupby(['Group', 'Size']).size()
print(dfg)
Copy after login

Output:

Group     Size
Moderate  Medium    1
          Small     1
Short     Small     2
Tall      Large     1
dtype: int64
Copy after login

Option 2: Using groupby, size, and reset_index

dfg = df.groupby(['Group', 'Size']).size().reset_index(name='Time')
print(dfg)
Copy after login

Output:

      Group    Size  Time
0  Moderate  Medium     1
1  Moderate   Small     1
2     Short   Small     2
3      Tall   Large     1
Copy after login
Copy after login

Option 3: Using groupby, size, and as_index

dfg = df.groupby(['Group', 'Size'], as_index=False).size()
print(dfg)
Copy after login

Output:

      Group    Size  Time
0  Moderate  Medium     1
1  Moderate   Small     1
2     Short   Small     2
3      Tall   Large     1
Copy after login
Copy after login

Each option returns a dataframe with Group and Size columns, indicating the specific row combinations that appear in the original dataframe. An additional Time column shows the frequency count for each combination.

The above is the detailed content of How to Count the Frequency of Rows Based on Multiple Columns in a Pandas DataFrame?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!