frame_data {dplyr}R Documentation

Row-wise data_frame creation

Description

Create a row-wise data_frame.

Usage

frame_data(...)

tibble(...)

Arguments

...

Arguments specifying the structure of a data_frame.

Examples

frame_data(
  ~colA, ~colB,
  "a",   1,
  "b",   2
)

[Package dplyr version 0.4.3 Index]