如何创建一个动画,显示带有数字行的有序数字数组?

时间:2017-12-07 04:30:11

标签: r animation ggplot2 animated-gif gganimate

我有一个94个数字的数组var1。我希望它们以定义的间隔(例如0.05秒)显示在gif中。如果可能的话,我还想添加一个数字行。我期待看到这样的图片(当然是动画的):

=============================================== =========

COV1 = 2.34

---------- | ------------------------------------ - &GT; <子> COV1

2.34 _____

=============================================== =========

我刚刚成功地使用gganimate包来制作一些情节,但后来我意识到我还需要动画一些不是情节的东西...也许是与animation包有关的东西?

谢谢!

1 个答案:

答案 0 :(得分:1)

它看起来并不特别有启发性(实际上让我头疼的是看它),但它是动画的。

library(tidyverse)
library(gganimate)

set.seed(10)
dat = data.frame(x=sort(runif(94, 0, 100)))

p = ggplot(dat) +
  geom_line(data=data.frame(y=rep(c(0.90,0.905,1.095,1.1),each=2), x=rep(range(dat$x), 4)), 
            aes(x,y,group=y), size=1, colour="grey40", linetype=2) +
  geom_line(aes(x,y=1), colour="grey60", size=1.5, linetype="11") +
  geom_text(aes(label=paste0("COV1\n", round(x,2)), x=x, y=1.05, frame=x), size=5) +
  geom_segment(aes(x=min(dat$x), xend=x, y=1, yend=1, frame=x), 
               arrow=arrow(angle=90, length=unit(0.4, "cm")), size=1.5) +
  scale_y_continuous(limits=c(0.8,1.1)) +
  theme_void() +
  theme(plot.title=element_blank())

gganimate(p, filename="my_gif.gif", interval=0.05)

enter image description here