如何在绘图中追踪标记?

时间:2019-05-03 07:41:16

标签: r ggplot2 plotly

我正在使用图块中的滑块功能,这使我可以向图形添加滑块并随时间追踪标记。

不幸的是,过去的标记消失了。但是,我想跟踪模式,所以我希望过去的标记点保留在图形上。

这是我目前尝试的代码:

library(plotly) 

##slider graph only
p <- Participant_56020 %>% plot_ly(x = ~x_mav,y = ~y_mav,frame = ~time_proxy,type = 'scatter',mode = 'lines+markers'),size = 30,showlegend = F) %>% layout(yaxis = list(range = c(1000, 0))) %>% layout(xaxis = list(range = c(0, 1250))) 

这是我的图

enter image description here

0 个答案:

没有答案