如何使用水管工在网上显示/发送绘图?

时间:2019-05-16 09:55:13

标签: r r-plotly plumber

我有一个绘图,我想在其他UI上显示绘图,例如 角,使用R Plumber。

1 个答案:

答案 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