เริ่มต้นใช้งานเริ่มต้นใช้งานได้ฟรี

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.

แบบฝึกหัดนี้เป็นส่วนหนึ่งของหลักสูตร

Building Response Models in R

ดูคอร์ส

คำแนะนำการฝึกหัด

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

แบบฝึกหัดเชิงโต้ตอบแบบลงมือทำ

ลองทำแบบฝึกหัดนี้โดยเติมโค้ดตัวอย่างนี้ให้สมบูรณ์

# Structure of sales.data


# Tail of sales.data
แก้ไขและรันโค้ด