GGAnimate 包不加载 gif
GGAnimate package not loading gif
我直接使用官方网站的代码gganimate.com
library(ggplot2)
library(gganimate)
ggplot(mtcars, aes(factor(cyl), mpg)) +
geom_boxplot() +
# Here comes the gganimate code
transition_states(
gear,
transition_length = 2,
state_length = 1
) +
enter_fade() +
exit_shrink() +
ease_aes('sine-in-out')
我不断将单个 png 文件保存在我的工作目录中,而不是将 gif 动画作为输出。不过,我只想要 gif/animation。我没有看到我们必须将这些个人 png 组合在一起的额外步骤......有人可以建议吗?谢谢
我的 Tidyverse 包(包含依赖库 ggplot2)是 1.2.1,更新到最新版本(1.3.0)后,动画现在可以在 Viewer 中正常显示了。
我的结论是 Tidyverse 1.2.1 和 gganimate 1.0.4 可能存在一些错误,导致动画无法启动。
我遇到了同样的问题,一旦我安装了 Gifski 包,一切都很完美。
我直接使用官方网站的代码gganimate.com
library(ggplot2)
library(gganimate)
ggplot(mtcars, aes(factor(cyl), mpg)) +
geom_boxplot() +
# Here comes the gganimate code
transition_states(
gear,
transition_length = 2,
state_length = 1
) +
enter_fade() +
exit_shrink() +
ease_aes('sine-in-out')
我不断将单个 png 文件保存在我的工作目录中,而不是将 gif 动画作为输出。不过,我只想要 gif/animation。我没有看到我们必须将这些个人 png 组合在一起的额外步骤......有人可以建议吗?谢谢
我的 Tidyverse 包(包含依赖库 ggplot2)是 1.2.1,更新到最新版本(1.3.0)后,动画现在可以在 Viewer 中正常显示了。
我的结论是 Tidyverse 1.2.1 和 gganimate 1.0.4 可能存在一些错误,导致动画无法启动。
我遇到了同样的问题,一旦我安装了 Gifski 包,一切都很完美。