cbind.rv {rv} | R Documentation |
Combines random vectors by columns (cbind.rv
) or rows (rbind.rv
).
## S3 method for class 'rv': cbind(..., deparse.level = 1) ## S3 method for class 'rv': rbind(..., deparse.level = 1)
... |
vectors or matrices, can be rv objects |
deparse.level |
(passed on to cbind) |
See cbind and rbind for details.
Jouni Kerman kerman@stat.columbia.edu http://www.stat.columbia.edu/~kerman
Kerman, Jouni and Gelman, Andrew. Manipulating and Summarizing Posterior Simulations Using Random Variable Objects. Technical report, Columbia University, New York.
x <- rvnorm(10) y <- rvnorm(10) cbind(x,y) rbind(x,y)