Learn R Programming

tidytable (version 0.10.2)

tribble: Rowwise tidytable creation

Description

Create a tidytable using a rowwise setup.

Usage

tribble(...)

Arguments

...

Column names as formulas, values below. See example.

Examples

Run this code
tribble(
  ~ x, ~ y,
  "a", 1,
  "b", 2,
  "c", 3
)

Run the code above in your browser using DataLab