3

我有一个情节图,我想使用 R Plumber 在其他 UI(例如角度)上显示情节。

4

1 回答 1

4

这是您的操作方法:

# 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

于 2019-12-27T08:24:23.910 回答