我正在尝试通过使用按钮使用图来同时更新形状和图。当我按下button1时,shape1和plot1出现;而button2将导致shape2和plot2出现。我尝试了更新和中继,但都没有用。
感谢您的帮助。
data1 <- runif(100,0,1000)
data2 <- runif(5,0,1000)
data3 <- runif(100,0,1000)
data4 <- runif(500,0,1000)
p <- plot_ly() %>%
add_trace(type = 'scatter', mode = 'markers',
y = data1, visible=T, marker = list(color = 'blue')) %>%
add_trace(type = 'scatter', mode = 'markers',
y = data2, visible=F, marker = list(color = 'red'))%>%
add_trace(type = 'scatter', mode = 'markers',
y = data3, visible=T, marker = list(color = 'gray')) %>%
add_trace(type = 'scatter', mode = 'markers',
y = data4, visible=F, marker = list(color = 'black')) %>%
layout(title ="Data12",
updatemenus = list(
list(type='buttons',
buttons = list(
list(method = "update",
args = list(list(visible=c(T, F,T,F)),list(title
="Data12"),list(shapes=c(type="rect",x0=0,x1=100, xref="x",
y0=0,y1=100, yref="y",fillcolor = "green",
line = list(color = "green")))),
label = 'data12'),
list(method = "update",
args = list(list(visible=c(F,T,F,T)),list(title
="Data34"),list(shapes=c(type="rect",x0=0,x1=100, xref="x",
y0=0,y1=100, yref="y",fillcolor =
"blue", line = list(color = "blue")))),
label = 'data34')
))))
p
答案 0 :(得分:0)
也许您可以尝试以下方法:
library(plotly)
shapes12 = list(type="rect",x0=0,x1=100, xref="x",
y0=0,y1=100, yref="y",fillcolor = "green",
line = list(color = "green"))
shapes34 = list(type="rect",x0=0,x1=100, xref="x",
y0=0,y1=100, yref="y",fillcolor = "blue",
line = list(color = "blue"))
plot_ly() %>%
add_trace(type = 'scatter', mode = 'markers', name = "Data1",
y = data1, marker = list(color = 'blue')) %>%
add_trace(type = 'scatter', mode = 'markers', name = "Data2",
y = data2, marker = list(color = 'red'))%>%
add_trace(type = 'scatter', mode = 'markers', name = "Data3",
y = data3, marker = list(color = 'gray')) %>%
add_trace(type = 'scatter', mode = 'markers', name = "Data4",
y = data4, marker = list(color = 'black')) %>%
layout(updatemenus = list(
list(type='buttons',
buttons = list(
list(method = "update",
args = list(list(visible=c(T, T,F,F)),list(title ="Data12", shapes = list(shapes12))),
label = 'data12'),
list(method = "update",
args = list(list(visible=c(F,F,T,T)),list(title ="Data34", shapes = list(shapes34))),
label = 'data34')
)))
)