标签: r bokeh rbokeh
是否可以在rbokeh中将悬停文本添加到ly_text()图层?例如,如何将悬停文本添加到此图中绘制的数字?
ly_text()
d = data.frame(x=1:5, y=1:5, text=as.character(1:5)) figure() %>% ly_text(x, y, text, data=d)
谢谢!