dmat | R Documentation |
Like mat
, but returns a data frame.
dmat(x, ...)
x |
A data vector, character string, or a list. |
... |
Aditional optional arguments passed on to mat. |
A data.frame.
mat, bmat.
dmat("1e-01, 2+5, 3, 4, 5; 6, 7, 8, 9^2, pi", rows = FALSE)
z <- list(a = 1:10, b = 11:20, c = 21:30)
dmat(z) # list elements form rows
dmat(z, rows = FALSE) # list elements form columns
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.