如何使用geom_point在gganimate中的状态之间创建平滑过渡?

时间:2019-06-24 23:29:11

标签: r ggplot2 gganimate

我正在尝试使用gganimate创建动画情节。
当我将以下因素dat $ period传递给transition_states时,
我得到3张静态图片。我希望将要点从州“转移到”  状态。

这是我的代码:

plot <-
          ggplot(data = dat, aes(x = age, y = value, color = period)) +
          geom_point(size = 3, aes(group = period)) +
          facet_wrap(~group)+
          transition_states(states=period, transition_length = 2, state_length = 1) +
          ease_aes('linear')+
          enter_fade()+
          exit_fade()

plot

这是我的数据:

   record period value age group
1       1  start    45  24     a
2       2  start     6  22     c
3       3  start    23  32     b
4       4  start    67  11     a
5       1 middle    42  24     a
6       2 middle    65  22     c
7       3 middle    28  32     b
8       4 middle    11  11     a
9       1    end    23  24     a
10      2    end    14  22     c
11      3    end    34  32     b
12      4    end    21  11     a
13      5  start     5  12     c
14      6  start     9  23     c
15      7  start    53  47     b
16      8  start    17  32     a
17      5 middle    15  12     c
18      6 middle     6  23     c
19      7 middle    23  47     b
20      8 middle    67  32     a
21      5    end    51  12     c
22      6    end    16  23     c
23      7    end     8  47     b
24      8    end    41  32     a

要点显示/消失-我希望要点在各州之间的屏幕上移动-感谢您提供任何帮助

1 个答案:

答案 0 :(得分:3)

group美学用于确定每个期间数据中的哪些行被视为相同的对象。您需要在这里group = record

ggplot(data = dat, aes(x = age, y = value, color = period)) +
    geom_point(size = 3, aes(group = record)) +
    facet_wrap(~ group)+
    transition_states(states=period, transition_length = 2, state_length = 1) +
    ease_aes('linear')+
    enter_fade()+
    exit_fade()

enter image description here