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

Rolling minimum

The zoo package has several rolling window functions for common summary statistics like mean, median, sum, etc. However, not all statistics have a rolling function, so an important skill is to be able to apply any given function to a rolling window!

In this exercise, you'll apply a function to a rolling window generated from the daily_temp time series.

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

Manipulating Time Series Data in R

ดูคอร์ส

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

  • Create a 30-day, right-aligned rolling minimum of the daily_temp time series and assign it to temp_roll_min.

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

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

# Create the rolling minimum from daily_temp
temp_roll_min <- rollapply(___)

autoplot(___) + 
  theme_light() +
  labs(y = 'Degrees Celsius')
แก้ไขและรันโค้ด