tibble (version 1.4.2)

tribble: Row-wise tibble creation

Description

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.

Usage

tribble(...)

Arguments

...

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

Value

A tibble.

Details

frame_data() is an older name for tribble(). It will eventually be phased out.

Examples

Run this code
# NOT RUN {
tribble(
  ~colA, ~colB,
  "a",   1,
  "b",   2,
  "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
)
# }

Run the code above in your browser using DataCamp Workspace