View source: R/tt_compatibility.R
rrowl | R Documentation |
rtable
row from a vector or list of valuesCreate an rtable
row from a vector or list of values
rrowl(row.name, ..., format = NULL, indent = 0, inset = 0L)
row.name |
( |
... |
values in vector/list form. |
format |
( |
indent |
|
inset |
( |
A row object of the context-appropriate type (label or data).
Other compatibility:
rheader()
,
rrow()
,
rtable()
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))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.