frame_matrix: Row-wise matrix creation

Description Usage Arguments Value Examples

Description

Create matrices laying out the data in rows, similar to matrix(..., byrow = TRUE), with a nicer-to-read syntax. This is useful for small matrices, e.g. covariance matrices, where readability is important. The syntax is inspired by tribble().

Usage

1

Arguments

...

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

Value

A matrix.

Examples

1
2
3
4
5
frame_matrix(
  ~col1, ~col2,
  1,     3,
  5,     2
)

Robertus100/tibble documentation built on May 9, 2019, 10:09 a.m.