Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Learn Challenge: Group and Summarise Regional Sales | Grouping and Aggregation in R
Data Manipulation in R (Core)

bookChallenge: Group and Summarise Regional Sales

In business analytics, you often need to summarize sales data by categories such as region to create concise, actionable reports. After learning how to use group_by() to segment your data, you are ready to apply grouping and summarization skills to a practical scenario: analyzing sales by region. This type of analysis helps businesses identify high-performing areas and target strategies more effectively.

Task

Swipe to start coding

Apply your grouping and summarization skills to analyze sales data by region. Your goal is to produce a summary that shows, for each region, the total and average sales.

  • Group the data by the region column.
  • For each region, calculate the sum of the sales column and store it as total_sales.
  • For each region, calculate the mean of the sales column and store it as average_sales.
  • Return a data frame with one row per region and columns for region, total_sales, and average_sales.

Solution

Everything was clear?

How can we improve it?

Thanks for your feedback!

Section 3. Chapter 2
single

single

Ask AI

expand

Ask AI

ChatGPT

Ask anything or try one of the suggested questions to begin our chat

close

bookChallenge: Group and Summarise Regional Sales

Swipe to show menu

In business analytics, you often need to summarize sales data by categories such as region to create concise, actionable reports. After learning how to use group_by() to segment your data, you are ready to apply grouping and summarization skills to a practical scenario: analyzing sales by region. This type of analysis helps businesses identify high-performing areas and target strategies more effectively.

Task

Swipe to start coding

Apply your grouping and summarization skills to analyze sales data by region. Your goal is to produce a summary that shows, for each region, the total and average sales.

  • Group the data by the region column.
  • For each region, calculate the sum of the sales column and store it as total_sales.
  • For each region, calculate the mean of the sales column and store it as average_sales.
  • Return a data frame with one row per region and columns for region, total_sales, and average_sales.

Solution

Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?

How can we improve it?

Thanks for your feedback!

Section 3. Chapter 2
single

single

some-alt