让我们考虑一个简单的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包很有前途,但我找不到直接包含闪亮应用程序的方法。
- 另一种方法是将用于实时网页的小工具安装到 PowerPoint 中。在这种情况下,我可以在 Web 服务器上托管我的应用程序并使用 PowerPoint 连接到该服务器。但我不希望那样(互联网有时会出现问题……)。
- 第三,我可以在 R Markdown 中创建一个演示文稿,然后将其实现到 PowerPoint 中,但也没有找到方法。那么,有什么建议吗?