如何修改R Shiny中RenderDT的内置搜索栏,以允许多个用逗号分隔的条目?

huangapple go评论102阅读模式
英文:

How can I modify the inbuilt search bar of RenderDT in R Shiny to allow multiple entries separated by commas?

问题

  1. 我一直在尝试在shinyrenderDT表格函数的搜索栏中添加多个条目。
  2. 例如,在下面的代码中,我想修改内置在renderDT中的搜索栏,使其能够接受多个条目,以逗号分隔;例如,setosa,virginica应该返回包含setosavirginica的行。我找到了添加新搜索栏的解决方案,但我想知道是否可以相应地修改这个。对于此方面的任何帮助将不胜感激。
  3. ```R
  4. if (interactive()) {
  5. library(shiny)
  6. library(DT)
  7. shinyApp(
  8. ui = fluidPage(fluidRow(column(12, DTOutput('tbl')))),
  9. server = function(input, output) {
  10. output$tbl = renderDT(
  11. iris, options = list(lengthChange = FALSE)
  12. )
  13. }
  14. )
  15. }

我尝试了类似于这样的东西,但这会添加另一个搜索栏选项,这是不必要的。

  1. if (interactive()) {
  2. library(shiny)
  3. library(DT)
  4. shinyApp(
  5. ui = fluidPage(
  6. fluidRow(DTOutput('tbl'))
  7. ),
  8. server = function(input, output) {
  9. output$tbl = renderDT({
  10. data <- iris
  11. searchItems <- unlist(strsplit(input$search, ",")) # 通过逗号拆分输入字符串
  12. searchItems <- trimws(searchItems) # 移除首尾空格
  13. filteredData <- data[data$Species %in% searchItems, ]
  14. datatable(filteredData, options = list(lengthChange = FALSE))
  15. })
  16. }
  17. )
  18. }
  1. <details>
  2. <summary>英文:</summary>
  3. I have been trying to add multiple entries on the search bar of the renderdt table function on shiny.
  4. for example on the following code, instead of having a new search bar, i want to modify the one which is inbuilt in renderDT and allow it to take multiple entries, comma separated; for example setosa,virginica should bring rows with both setosa and virginica. I found solutions to add a new search bar but i wanted to know if i can modify this one accordingly. Any help regarding this would be highly appreciated.

if (interactive()) {
library(shiny)
library(DT)
shinyApp(
ui = fluidPage(fluidRow(column(12, DTOutput('tbl')))),
server = function(input, output) {
output$tbl = renderDT(
iris, options = list(lengthChange = FALSE)
)
}
)
}

  1. i tried something like this, but this adds another search bar option and that is unnecessary

if (interactive()) {
library(shiny)
library(DT)

shinyApp(
ui = fluidPage(
fluidRow(DTOutput('tbl'))
),
server = function(input, output) {
output$tbl = renderDT({
data <- iris

  1. searchItems &lt;- unlist(strsplit(input$search, &quot;,&quot;)) # Split input string by commas
  2. searchItems &lt;- trimws(searchItems) # Remove leading/trailing whitespace
  3. filteredData &lt;- data[data$Species %in% searchItems, ]
  4. datatable(filteredData, options = list(lengthChange = FALSE))
  5. })
  6. }

)
}

  1. </details>
  2. # 答案1
  3. **得分**: 1
  4. 你可以使用这段代码:
  5. ```r
  6. library(shiny)
  7. library(DT)
  8. callback <- function(sep) {
  9. sprintf('
  10. $("%s").append($("#mySearch"));
  11. $("#mySearch").on("keyup redraw", function(){
  12. var splits = $("#mySearch").val().split("%s").filter(function(x){return x !=="";})
  13. var searchString = "(" + splits.join("|") + ")";
  14. table.search(searchString, true).draw(true);
  15. });
  16. ', sep)
  17. }
  18. ui <- fluidPage(
  19. tags$head(tags$style(HTML(".search {float: right;}"))),
  20. br(),
  21. tags$input(type = "text", id = "mySearch", placeholder = "Search"),
  22. DTOutput("dtable")
  23. )
  24. server <- function(input, output){
  25. output[["dtable"]] <- renderDT({
  26. datatable(
  27. iris[c(1, 2, 51, 52, 101, 102),],
  28. options = list(
  29. dom = 'l<"search">rtip'
  30. ),
  31. callback = JS(callback(","))
  32. )
  33. }, server = FALSE)
  34. }
  35. shinyApp(ui, server)

个人而言,我更喜欢使用搜索构建器

  1. datatable(
  2. iris[c(1, 2, 51, 52, 101, 102),],
  3. extensions = "SearchBuilder",
  4. options = list(
  5. dom = "Qlfrtip",
  6. searchbuilder = TRUE
  7. )
  8. )
英文:

You can use this code:

  1. library(shiny)
  2. library(DT)
  3. callback &lt;- function(sep) {
  4. sprintf(&#39;
  5. $(&quot;div.search&quot;).append($(&quot;#mySearch&quot;));
  6. $(&quot;#mySearch&quot;).on(&quot;keyup redraw&quot;, function(){
  7. var splits = $(&quot;#mySearch&quot;).val().split(&quot;%s&quot;).filter(function(x){return x !==&quot;&quot;;})
  8. var searchString = &quot;(&quot; + splits.join(&quot;|&quot;) + &quot;)&quot;;
  9. table.search(searchString, true).draw(true);
  10. });
  11. &#39;, sep)
  12. }
  13. ui &lt;- fluidPage(
  14. tags$head(tags$style(HTML(&quot;.search {float: right;}&quot;))),
  15. br(),
  16. tags$input(type = &quot;text&quot;, id = &quot;mySearch&quot;, placeholder = &quot;Search&quot;),
  17. DTOutput(&quot;dtable&quot;)
  18. )
  19. server &lt;- function(input, output){
  20. output[[&quot;dtable&quot;]] &lt;- renderDT({
  21. datatable(
  22. iris[c(1, 2, 51, 52, 101, 102),],
  23. options = list(
  24. dom = &quot;l&lt;&#39;search&#39;&gt;rtip&quot;
  25. ),
  26. callback = JS(callback(&quot;,&quot;))
  27. )
  28. }, server = FALSE)
  29. }
  30. shinyApp(ui, server)

如何修改R Shiny中RenderDT的内置搜索栏,以允许多个用逗号分隔的条目?

Personally I prefer the search builder:

  1. datatable(
  2. iris[c(1, 2, 51, 52, 101, 102),],
  3. extensions = &quot;SearchBuilder&quot;,
  4. options = list(
  5. dom = &quot;Qlfrtip&quot;,
  6. searchbuilder = TRUE
  7. )
  8. )

如何修改R Shiny中RenderDT的内置搜索栏,以允许多个用逗号分隔的条目?

huangapple
  • 本文由 发表于 2023年6月2日 01:49:47
  • 转载请务必保留本文链接:https://go.coder-hub.com/76384474.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定