I am dabbling with the datatable feature in shiny and I am interested in creating a wellpanel or a sidepanel that lists all the columns of a datatable and allows users to choose which columns they want to see on the datatable.
Right now this code below displays all the columns of toy dataset mtcars
library(shiny)
runApp(list(
ui = basicPage(
h2('The mtcars data'),
dataTableOutput('mytable')
),
server = function(input, output) {
output$mytable = renderDataTable({
mtcars
})
}
))
I am interested in providing the users the ability to turn these columns either on or off using a checkbox
[1] "mpg" "cyl" "disp" "hp" "drat"
[6] "wt" "qsec" "vs" "am" "gear"
[11] "carb"
Any help on addressing this issue is much appriciated. Thanks in advance.
Here is an example. It uses
selectInput
to select columns, and displays all columns by default until you select one or more specific columns.My example uses
checkboxGroupInput
to select multiple columns