mod_format_DT: mod_format_DT_ui and mod_format_DT_server

mod_format_DTR Documentation

mod_format_DT_ui and mod_format_DT_server

Description

A shiny Module.

Usage

mod_format_DT_ui(id)

mod_format_DT_server(
  id,
  df,
  rownames = FALSE,
  dom = "Bt",
  style = reactive({     NULL })
)

Arguments

id

internal

df

internal

rownames

xxxx

dom

xxx

style

xxx

Examples

if(interactive()){
 library(QFeatures)
 library(shiny)
 library(DaparToolshed)
 data(ft)
 
  
 ui <- mod_format_DT_ui('dt')

 server <- function(input, output, session) {
  mod_format_DT_server(id = 'dt',
                       df = reactive({assay(ft,1)})
                       )
  }
 
 shinyApp(ui=ui, server=server)
}



samWieczorek/Dapar2 documentation built on May 13, 2022, 9:23 a.m.