Get startedGet started for free

Aggregating data

Aggregation is the process of reducing the sampling frequency of a time series and is important for understanding patterns within the data, allowing for cleaner visualization and interpretation. Especially if the temporal resolution is high – data sampled every hour or minute – it can be difficult to interpret the data or spot patterns, leading to a need for aggregation.

Here, you'll take a time series, hourly_temperature, containing hourly temperature readings from a town in the United States, and aggregate it to different levels.

hourly_temperature, xts, and ggplot2 are loaded for you.

This exercise is part of the course

Manipulating Time Series Data in R

View Course

Hands-on interactive exercise

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

# Autoplot with a proper label
___
Edit and Run Code