gpt4 book ai didi

r - 为 gganimate 设置较慢的帧速率或较长的持续时间

转载 作者:行者123 更新时间:2023-12-05 00:11:29 27 4
gpt4 key购买 nike

使用 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)

最佳答案

不确定为什么会收到该错误,但您可以在 animate() 中设置帧速率函数调用:

animate(p, nframes = 100, fps=3)

关于r - 为 gganimate 设置较慢的帧速率或较长的持续时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53543448/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com