2.7 Outputs 2 - Tables
NOTE: There are two options for displaying data frames in tables:
- tableOutput() <-> renderTable() for static tables,
- dataTableOutput() <-> renderDataTable() for dynamic tables
# In UI section
tableOutput(df_static),
dataTableOutput(df_dynamic),
# In SERVER section
renderTable(df_static)
renderDataTable(df_dynamic)