我知道如何通过遵循此page在rmarkdown中制作交互式文档。但是,我想要的是不同的。我想创建一个交互式文档,例如此处的示例:
---
title: "Shiny Document"
output: html_document
runtime: shiny
---
```{r, echo=FALSE}
sliderInput("bins", "Number of bins:", 30, min = 1, max = 50)
renderPlot({
x = faithful[, 2] # Old Faithful Geyser data
bins = seq(min(x), max(x), length.out = input$bins + 1)
# draw the histogram with the specified number of bins
hist(x, breaks = bins, col = 'darkgray', border = 'white')
})
```
我想将其包含在我的Shiny应用程序中。我知道我可以在Shiny的ui
函数中直接创建一个页面(或选项卡)。但是,我想要一个单独的文件来存储页面信息,而不是将所有内容都包含在ui
函数中。有可能吗?