tabTableOne: tabTableOne function

View source: R/ui_tab_tables.R

tabTableOneR Documentation

tabTableOne function

Description

Function to create a tab panel with one table.

Usage

tabTableOne(id, table_one)

Arguments

id

A string representing the id.

table_one

A string representing the table.

Value

A tab panel with one table.

Examples

dummy_data <- data.frame(
  A = 1:5,
  B = letters[1:5]
)
dummy_dt <- DT::datatable(dummy_data)
tabTableOne("dummy_id", dummy_dt)

vvshiny documentation built on July 26, 2023, 5:50 p.m.