View source: R/ExportedFuncs.R
cjoint | R Documentation |
Combine a sequence of vector, matrix or data-frame arguments by columns. Vector is treated as a column matrix.
cjoint(..., fill = NA)
... |
vectors or matrices |
fill |
a scalar used when these objects have different number of rows. |
a data frame
cbind
cjoint(2,c(1,2,3,4),matrix(1:6,2,3))
cjoint(v1 = 2, v2 = c(3,2), v3 = matrix(1:6,3,2),
v4 = data.frame(c(3,4,5,6,7),rep("x",5)),fill = 99)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.