ggsave和gganimate的“动画”

时间:2019-11-14 14:08:42

标签: r png gif resolution gganimate

我的最终目标是创建两个输出:

1)显示我所有数据的静态图像,另存为png
2)我的数据的动画,另存为gif

我正在使用ggplot2gganimate,并且对为什么两种保存方法之间的符号大小不一致感到困惑。

我尝试调整dpi并另存为jpg而不是png,但是没有运气。 有人可以帮助我弄清楚如何使两个输出对象中的宽度,高度和符号大小保持一致吗?

这是显示两个输出的可复制示例。您可以看到gif中的黑点较小。

制作png

library(gganimate)
library(ggplot2)

locs <- data.frame(x = c(1, 2, 3, 4, 5, 6),
                   y = c(1, 2, 3, 3.1, 3.2, 6),
                   LDT = c(1, 2, 3, 4, 5, 6))

g <- ggplot(locs, aes(x, y)) +
  geom_point() +
  theme_void() +
  theme(plot.background = element_rect(fill = "pink"))
g
ggsave("test.png", g, width = 2, height = 2, dpi = 100)

enter image description here

制作gif

anim <- g + transition_time(LDT)
animate(anim, duration = 1, fps = 20, width = 200, height = 200)
anim_save("test.gif")

enter image description here

1 个答案:

答案 0 :(得分:2)

animate()默认使用png()生成帧。

在您的ggsave电话中,您指定了100 dpi的打印分辨率。

要使用png获得相同的结果,您必须设置res = 100(请参阅test_png_device.png)。

要使用animate来使符号大小保持一致,您必须将分辨率传递给png作为animate的可选参数,如下所示:

library(gganimate)
library(ggplot2)
library(gifski)

locs <- data.frame(x = c(1, 2, 3, 4, 5, 6),
                   y = c(1, 2, 3, 3.1, 3.2, 6),
                   LDT = c(1, 2, 3, 4, 5, 6))

g <- ggplot(locs, aes(x, y)) +
  geom_point() +
  theme_void() +
  theme(plot.background = element_rect(fill = "pink"))

ggsave("test.png", g, width = 2, height = 2, dpi = 100)

png(filename = "test_png_device.png", width = 200, height = 200, units = "px", res = 100)
g
dev.off()

anim <- g + transition_time(LDT)
myAnimation <- animate(anim, duration = 1, fps = 20, width = 200, height = 200, renderer = gifski_renderer(), res = 100)
anim_save("test.gif", animation = myAnimation)

ggsave Result


添加:不确定是否对此感兴趣,但是,我喜欢将库(plotly)用于动画,因为它默认情况下会添加动画滑块。

以下是您的示例的ggplotly方式:

library(plotly)
library(htmlwidgets)

locs <- data.frame(x = c(1, 2, 3, 4, 5, 6),
                   y = c(1, 2, 3, 3.1, 3.2, 6),
                   LDT = c(1, 2, 3, 4, 5, 6))

g <- ggplot(locs, aes(x, y)) + theme_void() + 
  theme(panel.background = element_rect(fill = "pink")) +
  geom_point(aes(frame = LDT))

p <- ggplotly(g) %>% 
  animation_opts(500, easing = "linear", redraw = FALSE)

saveWidget(p, file = "myAnimation.html", selfcontained = TRUE)
browseURL("myAnimation.html")