Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added: Code to use value_counts in pyspark #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions pyspark-value_counts.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
from pyspark.sql import SparkSession
from pyspark.sql.functions import desc

# Create a SparkSession
spark = SparkSession.builder.appName("ValueCountsExample").getOrCreate()

# Create a PySpark DataFrame
data = [("apple", 5), ("orange", 3), ("banana", 2), ("apple", 3), ("orange", 4)]
df = spark.createDataFrame(data, schema=["fruit", "quantity"])

# Use groupBy and count to get the counts for each distinct value in the 'fruit' column
counts = df.groupBy("fruit").count().orderBy(desc("count"))

# Show the results
counts.show()

# Stop the SparkSession
spark.stop()