Description Usage Arguments Value Author(s) References See Also Examples
View source: R/aveytoolkit_cbindFill.R
Simple function to combine multiple objects by column while filling in NAs into extra rows created from differing lengths
1 2 |
... |
the objects, that will be converted to a list, to bind column-wise |
the cbind'ed objects passed in
Dimitris Rizopoulos and Tyler Rinker
http://stackoverflow.com/questions/7962267/cbind-a-df-with-an-empty-df-cbind-fill
1 2 3 4 5 6 7 | x <- matrix(1:10, 5, 2)
y <- matrix(1:16, 4, 4)
z <- matrix(1:12, 2, 6)
cbind.fill(x,y)
cbind.fill(x,y,z)
cbind.fill(mtcars, mtcars[1:10,])
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.