嵌入PowerPoint中的R Shiny应用

时间:2017-01-08 13:21:33

标签: r shiny powerpoint r-markdown reporters

让我们考虑一个简单的r shiny应用程序

# Global variables can go here
n <- 200
# Define the UI
ui <- bootstrapPage(
  numericInput('n', 'Number of obs', n),
  plotOutput('plot')
)
# Define the server code
server <- function(input, output) {
  output$plot <- renderPlot({
    hist(runif(input$n))
  })
}
# Return a Shiny app object
shinyApp(ui = ui, server = server)

我想将此应用程序实现到我的(Microsoft)PowerPoint演示文稿中,而不会失去其交互性。我尝试了一些东西,但收效甚微:

  • ReporteRs包很有前途,但我找不到直接包含闪亮应用程序的方法。
  • 另一种方法是将实时网页的gadget安装到PowerPoint中。在这种情况下,我可以在Web服务器上托管我的应用程序,并使用PowerPoint连接到该服务器。但我不希望这样(互联网有时会出现问题......)。
  • 第三,我可以在R Markdown中创建一个演示文稿,然后将其实现到PowerPoint中,但也没有找到方法。 那么,有什么建议吗?

0 个答案:

没有答案