Maturing lifecycle

Create tibbles using an easier to read row-by-row layout. This is useful for small tables of data where readability is important. Please see tibble-package for a general introduction.

tribble(...)

Arguments

...

Arguments specifying the structure of a tibble. Variable names should be formulas, and may only appear before the data. These arguments support tidy dots.

Value

A tibble.

Examples

tribble( ~colA, ~colB, "a", 1, "b", 2, "c", 3 )
#> # A tibble: 3 x 2 #> colA colB #> <chr> <dbl> #> 1 a 1 #> 2 b 2 #> 3 c 3
# tribble will create a list column if the value in any cell is # not a scalar tribble( ~x, ~y, "a", 1:3, "b", 4:6 )
#> # A tibble: 2 x 2 #> x y #> <chr> <list> #> 1 a <int [3]> #> 2 b <int [3]>