You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
342 B
18 lines
342 B
|
|
# SHiny module to show data frame using DT
|
|
datatableUI<- function(id){
|
|
ns <- NS(id)
|
|
tagList(
|
|
h4("Full Data"),
|
|
DT::dataTableOutput(ns("datatable"))
|
|
)
|
|
|
|
}
|
|
|
|
datatableServer<- function(id, df){
|
|
moduleServer(id, function(input, output, session){
|
|
output$datatable <- DT::renderDataTable({
|
|
DT::datatable(df)
|
|
})
|
|
})
|
|
}
|