rrowl {rtables} | R Documentation |
Create an rtable
row from a vector or list of values
Description
Create an rtable
row from a vector or list of values
Usage
rrowl(row.name, ..., format = NULL, indent = 0, inset = 0L)
Arguments
row.name |
( |
... |
values in vector/list form. |
format |
( |
indent |
|
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))
[Package rtables version 0.6.9 Index]