frame_matrix {tibble} | R Documentation |
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()
.
frame_matrix(...)
... |
Arguments specifying the structure of a |
A matrix.
frame_matrix( ~col1, ~col2, 1, 3, 5, 2 )