
Last chance! 50% off unlimited learning
Sale ends in
Render a renderTable
or renderDataTable
within an
application page. renderTable
uses a standard HTML table, while
renderDataTable
uses the DataTables Javascript library to create an
interactive table with more features.
tableOutput(outputId)dataTableOutput(outputId)
output variable to read the table from
A table output element that can be included in a panel
# NOT RUN {
## Only run this example in interactive R sessions
if (interactive()) {
# table example
shinyApp(
ui = fluidPage(
fluidRow(
column(12,
tableOutput('table')
)
)
),
server = function(input, output) {
output$table <- renderTable(iris)
}
)
# DataTables example
shinyApp(
ui = fluidPage(
fluidRow(
column(12,
dataTableOutput('table')
)
)
),
server = function(input, output) {
output$table <- renderDataTable(iris)
}
)
}
# }
Run the code above in your browser using DataLab