Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Challenge: Arrange and Summarise Sales Data | Data Manipulation with dplyr
/
Data Manipulation in R (Core)
セクション 1.  6
single

single

bookChallenge: Arrange and Summarise Sales Data

メニューを表示するにはスワイプしてください

You have already explored how to select, filter, and mutate data using dplyr. Now, you will put your skills to the test by arranging and summarizing sales data. In this challenge, you will work with a sales_data data frame to uncover key performance insights. You will need to arrange the data by revenue and then use the summarise() function to calculate both total and average sales. This exercise will help you reinforce your understanding of two essential data manipulation techniques and see how they work together to answer important business questions.

タスク

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

Arrange the sales_data data frame by revenue in descending order and store the result in arranged_sales. Then, use summarise() to calculate the total and average number of units sold, storing these results in sales_summary.

  • Arrange sales_data by the revenue column in descending order and assign to arranged_sales.
  • Calculate the sum of the units_sold column and assign as total_sales in sales_summary.
  • Calculate the mean of the units_sold column and assign as average_sales in sales_summary.

解答

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

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

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

セクション 1.  6
single

single

AIに質問する

expand

AIに質問する

ChatGPT

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

some-alt