问题 I am wondering if there is a way to remove the index column (1st column) from the data table in Shiny. For example, column of (1, 2, 3) before Name column as shown in the screenshot below: Below is my code: header <- dashboardHeader( title = "Test" ) sidebar <- dashboardSidebar( ) body <- dashboardBody( box(title = "Test", width = 7, status = "warning", DT::dataTableOutput("df")) ) # UI ui <- dashboardPage(header, sidebar, body) # Server server <- function(input, output, session) { output$df