标签: r ggplot2 plotly r-plotly ggplotly
例如,使用R中的longley数据集,我们可以使用
longley
p <- ggplot(longley , aes(Year, Population, frame = Year)) + geom_point()
要制作动画,我们可以使用
Out <- ggplotly(p, height = 600, width = 600) %>% animation_opts(frame = 1120, easing = "linear")
是否有一种方法可以将黑点替换为图像,例如R徽标?