我正在寻找优秀的包裹游戏。 我能够生成黑点动画,例如:
library(ggplot2)
library(tourr)
animate(flea[, 1:6])
但是如何通过因子生成带有彩色点的动画? 按大小,按年份等显示颜色点。
答案 0 :(得分: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)))