我尝试使用以下代码尝试显示多页 来源:http://rmarkdown.rstudio.com/authoring_shiny_advanced.html
表示index.Rmd
```{r, echo = FALSE}
library(shiny)
selectInput("dataset", "Choose Dataset:", c("cars", "iris", "mtcars"))
renderTable({
head(mtcars, 5)
})
```
[Another Shiny Document](index2.Rmd)
表示index2.Rmd
```{r, echo = FALSE}
library(shiny)
selectInput("dataset2", "Choose Dataset:", c("cars", "iris", "mtcars"))
activeDataset2 <- reactive({
get(input$dataset2, pos="package:datasets", inherits=FALSE)
})
renderPlot({
plot(activeDataset2())
})
```
似乎闪亮的服务器只能正确显示index2.Rmd,问题出在哪里?谢谢你的帮助!
index.Rmd出现问题,现在有两个文件按预期运行。