Learn R Programming

rtables (version 0.6.6)

rheader: Create a header

Description

Create a header

Usage

rheader(..., format = "xx", .lst = NULL)

Value

a InstantiatedColumnInfo object.

Arguments

...

row specifications (either as character vectors or the output from rrow or DataRow, LabelRow, etc.

format

character(1) or function. The format label (string) or formatter function to apply to the cell values passed via .... See list_valid_format_labels for currently supported format labels.

.lst

list. An already-collected list of arguments to be used instead of the elements of .... Arguments passed via ... will be ignored if this is specified.

See Also

Other compatibility: rrowl(), rrow(), rtable()

Examples

Run this code

h1 <- rheader(c("A", "B", "C"))

h2 <- rheader(
  rrow(NULL, rcell("group 1", colspan = 2), rcell("group 2", colspan = 2)),
  rrow(NULL, "A", "B", "A", "B")
)

h1

h2

Run the code above in your browser using DataLab