Skip to content

tabulate_high_qtc_sub

Description

Tabulates number of high QTc/deltaQTc observations.

Usage

tabulate_high_qtc_sub(
data,
qtc_col,
deltaqtc_col,
group_col = NULL,
group_label = NULL,
title = NULL,
...
)

Arguments

NameDescription
dataa dataframe of QTc dataset
qtc_colan unquoted column name of QTc data
deltaqtc_colan unquoted column name of deltaQTC data
group_colan optional unquoted column name of grouping column
group_labelan optional label to use for group column
titleoptional string to give the table a title, wrapped in gt::md()
...optional additional args to gt::tab_options

Returns

a gt table

Examples

data_proc <- preprocess(data)
tabulate_high_qtc_sub(data_proc, QTCF, deltaQTCF)