View source: R/rowwise_table.R
rowwise_table | R Documentation |
Similar to the tibble function tribble()
, this function
allows to construct tabular data in a row-wise fashion.
The first arguments passed as formula will be interpreted as column names. The remaining arguments will be put into the resulting table.
rowwise_table(..., .key = NULL)
... |
( |
.key |
( |
data.table::data.table()
.
rowwise_table(
~a, ~b,
1, "a",
2, "b"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.