Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以将悬停文本添加到ly_text()rbokeh 中的图层?例如,如何在此图中绘制的数字中添加悬停文本?
ly_text()
d = data.frame(x=1:5, y=1:5, text=as.character(1:5)) figure() %>% ly_text(x, y, text, data=d)
谢谢!