在 R 中制作 MWE GIF 动画

问题描述 投票:0回答:1

您能告诉我为什么用 R 编译的动画 GIF 的 MWE 没有动画吗?

library("ggplot2")
library("gifski")
library("gganimate")
library("dplyr")
library("lubridate")

animate(ggplot(tribble(
~time,          ~y,
"2020-01-01",   2,
"2020-02-01",   4,
"2020-03-01",   3
) %>% mutate(time = as.numeric(ymd(time)))) +
    geom_line(aes(x=time, y=y)) +
    transition_time(time),
    renderer = gifski_renderer(file = "test.gif"))

结果是静止的

Still GIF

r ggplot2 gif gganimate
1个回答
0
投票

transition_time()
更改为
transition_reveal()
产生结果。

Moving GIF

© www.soinside.com 2019 - 2024. All rights reserved.