如何解决是否有可能有两个不同的输入可以使用闪亮的 R 过滤我的 DT 表?
这是我的代码。
```{r}
selectInput("input_type","Select Cylinder Size: ",c("All",mtcars$cyl))
selectInput("input_type2","Select # of Gears: ",mtcars$gear))
mtcars2 <- reactive({
if(input$input_type=="All")
mtcars
else
subset(mtcars,cyl == input$input_type)
})
renderDataTable(
datatable(mtcars2())
)
```
虽然我有第二个输入也可以让我按齿轮过滤,但它不起作用,因为我不知道如何将它与反应函数联系起来。
有什么想法吗?
解决方法
类似这样的 [未经测试的代码]:
selectInput("input_type","Select Cylinder Size: ",c("All",mtcars$cyl))
selectInput("input_type2","Select # of Gears: ",mtcars$gear))
mtcars2 <- reactive({
d <- mtcars
if(input$input_type !="All")
d <- subset(d,cyl == input$input_type)
if(input$input_type2 !="All")
d <- subset(d,gear == input$input_type2)
d
})
renderDataTable(
datatable(mtcars2())
)
顺便说一下,您可能希望在为您的输入定义选择列表时使用 unique
。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。