Get startedGet started for free

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.

This exercise is part of the course

Building Response Models in R

View Course

Exercise instructions

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

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Structure of sales.data


# Tail of sales.data
Edit and Run Code