セクション 3. 章 2
single
Challenge: 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
regioncolumn. - For each region, calculate the sum of the
salescolumn and store it astotal_sales. - For each region, calculate the mean of the
salescolumn and store it asaverage_sales. - Return a data frame with one row per region and columns for
region,total_sales, andaverage_sales.
解答
すべて明確でしたか?
フィードバックありがとうございます!
セクション 3. 章 2
single
AIに質問する
AIに質問する
何でも質問するか、提案された質問の1つを試してチャットを始めてください