Challenge: 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.
Swipe to start coding
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_databy therevenuecolumn in descending order and assign toarranged_sales. - Calculate the sum of the
units_soldcolumn and assign astotal_salesinsales_summary. - Calculate the mean of the
units_soldcolumn and assign asaverage_salesinsales_summary.
Solution
Thanks for your feedback!
single
Ask AI
Ask AI
Ask anything or try one of the suggested questions to begin our chat
Awesome!
Completion rate improved to 4.17
Challenge: Arrange and Summarise Sales Data
Swipe to show menu
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.
Swipe to start coding
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_databy therevenuecolumn in descending order and assign toarranged_sales. - Calculate the sum of the
units_soldcolumn and assign astotal_salesinsales_summary. - Calculate the mean of the
units_soldcolumn and assign asaverage_salesinsales_summary.
Solution
Thanks for your feedback!
single