我想制作闪亮的文档,读者可以在不同版本的图表/表格之间进行选择。
第一个示例工作正常,但第二个示例仅在选择选项2时才工作。唯一的区别是if{}else{}与if{}if{}结构。
我希望用户选择几个图形,而不仅仅是一个或两个。
---
output: html_document
runtime: shiny
---
#```{r eruptions, echo=FALSE}
inputPanel(
selectInput("option",
label = "Number of bins:",
choices = c(1, 2, 3), selected = 1
),
)
renderUI({
if (input$option == 1) {
renderPlot({
plot(1:10)
})
} else {
renderPlot({
plot(1:10, 10:1)
})
}
})
#```
#```{r eruptions2, echo=FALSE}
inputPanel(
selectInput("option2",
label = "Number of bins:",
choices = c(1, 2, 3), selected = 1
),
)
renderUI({
if (input$option2 == 1) {
renderPlot({
plot(1:10)
})
}
if (input$option2 == 2) {
renderPlot({
plot(1:10, 10:1)
})
}
})
1条答案
按热度按时间ioekq8ef1#
R执行花括号之间的表达式的最后一条语句。如果是
input$option2 == 1
,则继续读取代码,即if(input$option == 2)
。由于该条件未实现,因此输出为NULL
(不可见)。清楚了吗