Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Challenge: Group and Summarise Regional Sales | Grouping and Aggregation in R
Data Manipulation in R (Core)
セクション 3.  2
single

single

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.

タスク

スワイプしてコーディングを開始

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.

解答

Switch to desktop実践的な練習のためにデスクトップに切り替える下記のオプションのいずれかを利用して、現在の場所から続行する
すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 3.  2
single

single

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

some-alt