我使用SortableHTMLTables包创建R输出以创建可排序数据表以及rbokeh包以创建交互式散点图。我可以在不同的页面上成功获得两者。我想将这些组合到一个页面上(以便首先看到该图,并且数据表如下所示。请参阅下面的现有R代码:
library(SortableHTMLTables)
library(rbokeh)
DATASET=data.frame(x=1:5,y=6:2,z=6:10)
# Use rbokeh to create interactive plot
g<-figure(width = NULL, height = NULL) %>%
ly_points(x, y, data = DATASET, color="black", hover = z)
# Output rbokeh file to html output
rbokeh2html(g, file = "c:/r_samples/plot.html")
# Output the sortable html table.
sortable.html.table(DATASET,"table.html","c:/r_samples/")