Back to Blog
How-To

How to Count the Frequency that a Value Occurs in a DataFrame Column

How to count the frequency that a value occurs
Aporia Team Aporia Team 2 min read Sep 06, 2022

In a column with categorical or distinct values, it is important to know the number of occurrences of each value. In this short how-to article, we will learn how to perform this task in Pandas and PySpark DataFrames.

How to Count the Frequency that a Value Occurs in a DataFrame Column Pyspark and Pandas

Pandas

The value_counts function returns the distinct values in a column along with their number of occurrences.

df["Color"].value_counts()

Missing values are ignored by default. If we know that there are missing values in a column, it is best to count them as well. The dropna parameter is set to False to include the missing values.

df["Color"].value_counts(dropna=False)

PySpark

To count the number of occurrences of distinct values in a column, we use the groupby and count functions. The rows are grouped by the column of interest and then the count function is applied.

df.groupby("name").count().show()

The missing values are included in this calculation.

This question is also being asked as:

  • How can I return the number of times an element appears in a column

People have also asked for:

Rate this article

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate this post.

Slack

On this page

Blog
Building a RAG app?

Consider AI Guardrails to get to production faster

Learn more
Table of Contents

Related Articles