-1
A
回答
0
如何在R中進行數據表高亮顯示。閃亮的實現應該是直截了當的。
library(DT)
mtcars2 = head(mtcars[, 1:5], 20)
mtcars2$model = rownames(mtcars2)
rownames(mtcars2) = NULL
options(DT.options = list(pageLength = 5))
# global search
datatable(mtcars2, options = list(searchHighlight = TRUE, search = list(search = 'da')))
在這裏看到:R Studio DT Explanation
編輯:
小閃亮例如
server.R:
shinyServer(function(input, output) {
output$testme <- renderDataTable({
mtcars2 = head(mtcars[, 1:5], 20)
mtcars2$model = rownames(mtcars2)
rownames(mtcars2) = NULL
options(DT.options = list(pageLength = 5))
# global search
datatable(mtcars2, options = list(searchHighlight = TRUE, search =
list(search = 'da')))
})
})
ui.R:
library(shiny)
library(DT)
shinyUI(fluidPage(
DT::dataTableOutput(outputId = "testme")
)
)
相關問題
- 1. 在Sql Server全文搜索中突出顯示文本標準
- 2. 突出顯示在數據表中的搜索結果
- 3. 突出顯示數據表搜索字符串
- 4. 突出顯示搜索TextBlock
- 5. 在Elasticsearch中搜索突出顯示(javascript)
- 6. 電子表格中的搜索字符串和突出顯示
- 7. 突出顯示JSF數據表的行
- 8. 突出顯示搜索Word中的VBA
- 9. 突出顯示在JTextPane中將光標對準的行
- 10. 無法突出顯示數據錶行
- 11. 數據表 - 突出顯示所選行
- 12. 根據一定的搜索標準顯示地址簿數據
- 13. 在網絡搜索中突出顯示搜索字詞
- 14. ASP.NET MVC - 在搜索結果中突出顯示搜索字詞
- 15. 如何禁用cts:在搜索中突出顯示:搜索API?
- 16. 如何使用Ajax中的搜索框突出顯示列表中的數據
- 17. 如何在數據呈現時突出顯示搜索輸入?
- 18. 顯示符合W3C標準
- 19. 突出顯示使用google搜索表的重複行
- 20. 使用Solr 1.4進行通配符搜索和突出顯示
- 21. 在GVIM中,我們如何搜索和突出顯示,同時保持以前的搜索突出顯示
- 22. 突出顯示的UITextField搜索(swift2)
- 23. NetSuite保存的搜索 - 基於'結果'而不是'標準'的突出顯示
- 24. 突出搜索表數據和列
- 25. 在列中搜索文本並突出顯示該行
- 26. 搜索,替換和突出顯示Swift 2.0中的字符串
- 27. Google Docs電子表格顯示來自符合標準的行的數據
- 28. 搜索並突出顯示Excel 2010中的行
- 29. mysql和php搜索突出顯示
- 30. 突出顯示搜索字詞
歡迎的StackOverflow!請閱讀關於[如何提出一個好問題](http://stackoverflow.com/help/how-to-ask)以及如何給出[可重現的示例]的信息(http://stackoverflow.com/questions/ 5963269 /如何對化妝一個偉大-R-重複性,例如/ 5963610)。這會讓其他人更容易幫助你。 – Jaap