regressoR (version 1.1.8)

render_index_table: render_index_table

Description

creates a reactive table for indices panels.

Usage

render_index_table(table)

Arguments

table

the data.frame to be converted

Examples

Run this code
# NOT RUN {
if(interactive()) {
   library(shiny)
   shinyApp(
      ui = fluidPage(fluidRow(column(12, tableOutput('tbl')))),
      server = function(input, output) {
         output$tbl = render_index_table(iris)
      }
   )
}

# }

Run the code above in your browser using DataCamp Workspace