R DT
DT is a library for an enhanced version of Shiny's data table widget.
Contents
Installation
install.packages('DT')
Usage
library(shiny)
library(DT)
shinyApp(
ui = fluidPage(DTOutput('tbl')),
server = function(input, output) {
output$tbl = renderDT(
iris, options = list(lengthChange = FALSE)
)
}
)DT shadows the base Shiny functions dataTableOutput and renderDataTable, but it is recommended to call DTOutput and renderDT directly anyway.