rowwiseDT creates a data.table object by specifying a row-by-row layout. This is convenient and highly readable for small tables.
Usage
rowwiseDT(...)
Value
A data.table. The default is for each column to return as a vector. However, if any entry has a length that is not one (e.g., list(1, 2)), the whole column will be converted to a list column.
Arguments
...
Arguments that define the structure of a data.table. The column names come from named arguments (like col=), which must precede the data. See Examples.