使用gganimate从ggplot制作动画时,我需要设置较低的速度以允许人们读取数据。
阅读文档(很难找到选项)似乎是“ nframes”是正确的设置。但是我不能放慢动画或设置持续时间。两种方法都可以
library("gganimate")
library("tidyverse")
p <- ggplot(airquality, aes(Day, Temp, color = Month)) +
transition_time(Month) +
labs(title = 'Month is {frame_time}') +
geom_path(aes(group = Month), size = 1)
animate(p, nframes = 100)
Error in device(files[i], ...) : unused argument (nframes = 100)
答案 0 :(得分:4)
不确定为什么会收到该错误,但是可以在animate()
函数调用中设置帧速率:
animate(p, nframes = 100, fps=3)