Exercise

Retail sales

You work as an analyst for a marketing research company. You assist the marketing manager of a local microbrewery called the 3 MuskeBeers in analyzing and evaluating its core product, Hoppiness. The dataset provided to you, named sales.data, is already loaded for you in R.

The first task you have to work on is to understand the structure of your data. You can use the function str() to compactly display the structure and the first few observations of sales.data. Alternatively, you can use the function tail() to display only the last part of the data.

Instructions

100 XP
  • Display the structure of sales.data by using the function str().
  • Display the last 6 observations of sales.data by using the function tail().