rowwise_table {mlr3misc} | 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 |
( |
rowwise_table(
~a, ~b,
1, "a",
2, "b"
)