2

我正在寻找优秀的旅行团。我能够生成黑点动画,例如:

 library(ggplot2)
 library(tourr)

 animate(flea[, 1:6])

但是如何按因子生成带有彩色点的动画呢?按大小,按年份等的示例颜色点。

4

1 回答 1

2

您可以使用 ?animate_stereo它使用红蓝立体图来显示 3d 游览路径。

animate_stereo(flea[, 1:6])

或类似的东西:

animate(data = flea[, 1:6], tour_path = grand_tour(4),
        display = display_stereo(blue = rgb(0, 0, 1), 
                                 red  = rgb(1, 0, 0)))
于 2013-01-19T13:28:29.070 回答