我有一个绘图,我想在其他UI上显示绘图,例如 角,使用R Plumber。
答案 0 :(得分:0)
这是您的操作方式:
# API for experimenting with html widgets
library(plumber)
library(ggplot2)
library(plotly)
#* @apiTitle HTML widgets API
#* Return interactive plot using plotly
#* @serializer htmlwidget
#* @get /plotly
function() {
p <- ggplot(data = diamonds,
aes(x = cut, fill = clarity)) +
geom_bar(position = "dodge")
ggplotly(p)
}
希望这会有所帮助。
来源-https://github.com/blairj09/plumber-playground/blob/master/experiments/htmlwidgets-exp/plumber.R