rrowl: 'rrowl'

View source: R/tt_compatibility.R

rrowlR Documentation

rrowl

Description

rrowl

Usage

rrowl(row.name, ..., format = NULL, indent = 0, inset = 0L)

Arguments

row.name

if NULL then an empty string is used as row.name of the rrow.

...

values in vector/list form

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.

indent

deprecated.

inset

integer(1). The table inset for the row or table being constructed. See table_inset.

Value

A row object of the context-appropriate type (label or data)

See Also

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

Examples

rrowl("a", c(1,2,3), format = "xx")
rrowl("a", c(1,2,3), c(4,5,6), format = "xx")


rrowl("N", table(iris$Species))
rrowl("N", table(iris$Species), format = "xx")

x <- tapply(iris$Sepal.Length, iris$Species, mean, simplify = FALSE)

rrow(row.name = "row 1", x)
rrow("ABC", 2, 3)

rrowl(row.name = "row 1", c(1, 2), c(3,4))
rrow(row.name = "row 2", c(1, 2), c(3,4))

rtables documentation built on Aug. 30, 2023, 5:07 p.m.