paquete extension color r datatable shiny dt

extension - Eliminar la fila de encabezado en datatable brillante



render dt r (1)

Simplemente agregue colnames = NULL a su datatable ()

datatable(mtcars, rownames = FALSE,colnames=NULL, selection = ''none'', options = list(dom = ''t''))

Ver? Datatable

Estoy tratando de eliminar la fila de encabezado en una tabla de datos brillante, ¿alguien sabe si hay una opción para hacer esto?

Ejemplo mínimo:

#SERVER.R output$myTable <- renderDataTable({ datatable(dataset, rownames = FALSE, selection = ''none'', options = list(dom = ''t'')) }) #UI.R dataTableOutput(''myTable'')