我一直在寻找在线解决方案,在我创建的ggplot2折线图上实现工具提示,但没有任何运气。
我的R代码如下:
function split(txt) {
return txt.split(' ').map(s => [s]);
}
console.log(split('hello world'));
我正在尝试在工具提示中显示“ToNum”的值。 任何帮助将不胜感激。
答案 0 :(得分:1)
我认为你正在寻找ggiraph
:
library(ggiraph)
library(ggplot2)
library(tidyverse)
rownames_to_column(mtcars, "car") %>%
ggplot(aes(wt, mpg, tooltip=car)) +
geom_point_interactive() -> gg
ggiraph(code = print(gg))
(它需要在交互式环境中进行演示,因此无需图像)