Push the knit button!

library(tidyverse) # contains ggplot2, dplyr, tidyr, etc
library(plotly)

Load the abs data with

load(here::here("data/abs.rda"))

Exercise 1.1: Animated scatterplot

Make an animation of Unemployed by Renting over time for the abs data.

# add your code here!

Exercise 1.2: Linked time series

Compute the yearly average by state for each of the abs statistics. Make a linked multiple time series display of the four statistics.

# add your code here!