How do I slow the plot below, down? I am trying to step through the days a bit slower. This is three years worth of data shown by day. Each day should be about 0.25 seconds.
The code I am using to build this plot is below:
library(tidyverse)
library(gganimate)
df_daily %>%
ggplot(aes(longitude, latitude)) +
geom_point(aes(alpha = a)) +
transition_time(flu_day) +
ease_aes('linear', interval = 0.001) +
labs(title = 'Date: {frame_time}')