tribble {tidytable} | R Documentation |
Rowwise tidytable creation
Description
Create a tidytable using a rowwise setup.
Usage
tribble(...)
Arguments
... |
Column names as formulas, values below. See example. |
Examples
tribble(
~ x, ~ y,
"a", 1,
"b", 2,
"c", 3
)
[Package tidytable version 0.11.1 Index]