我想要两个不同的事件来触发我的应用程序中各种绘图/输出所使用的数据的更新。一个是被单击的按钮(input$spec_button
),另一个是被单击的点上的点(mainplot.click$click
)。
基本上,我想同时列出两者,但是我不确定如何编写代码。这是我现在拥有的:
在server.R中:
data <- eventReactive({mainplot.click$click | input$spec_button}, {
if(input$spec_button){
# get data relevant to the button
} else {
# get data relevant to the point clicked
}
})
但是if-else子句不起作用
Error in mainplot.click$click | input$spec_button :
operations are possible only for numeric, logical or complex types
->我可以为mainplot.click$click | input$spec_button
子句使用某种动作组合功能吗?