View(weather_df)

#weather_df$Year
#as.Date(weather_df$Year)
weather_df %>% 
  filter(Temp %in% "High") %>% 
ggplot(aes(as.numeric(Year), as.numeric(Annual))) + geom_line() + geom_smooth()
## Warning in FUN(X[[i]], ...): NAs introduced by coercion

## Warning in FUN(X[[i]], ...): NAs introduced by coercion

## Warning in FUN(X[[i]], ...): NAs introduced by coercion
## `geom_smooth()` using method = 'loess' and formula 'y ~ x'
## Warning: Removed 2 rows containing non-finite values (stat_smooth).
## Warning: Removed 2 row(s) containing missing values (geom_path).

Some text.