Create a tidytable using a rowwise setup.

tribble(...)

Arguments

...

Column names as formulas, values below. See example.

Examples

tribble(
  ~ x, ~ y,
  "a", 1,
  "b", 2,
  "c", 3
)
#> # A tidytable: 3 × 2
#>   x         y
#>   <chr> <dbl>
#> 1 a         1
#> 2 b         2
#> 3 c         3