是否可以让用户选择Shiny图上的点来查看它们的值,类似于identify()函数?
谢谢!
答案 0 :(得分:1)
是的,也很容易。 闪亮的情节都会监听X $ click,x $ doubleClick等事件以及调用回调函数。
xyclick <- function(e){
e$x
e$y
//This will give you the index of whatever you were plotting
}
对于散点图这很简单,如果你选择条形图和其他图形,可能需要进行一些处理以将坐标转换为可以使用的索引。
退房:
http://shiny.rstudio.com/articles/plot-interaction.html