tabTableOne {vvshiny}R 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)

[Package vvshiny version 0.1.1 Index]