cbind.rv: Combine random vectors by columns or rows

Description Usage Arguments Details Author(s) References Examples

View source: R/cbind_rbind_rv.R

Description

Combines random vectors by columns (cbind.rv) or rows (rbind.rv).

Usage

1
2
## S3 method for class 'rv'
cbind(..., deparse.level = 1)

Arguments

...

vectors or matrices, can be rv objects

deparse.level

(passed on to cbind)

Details

See cbind and rbind for details.

Author(s)

Jouni Kerman jouni@kerman.com

References

Kerman, J. and Gelman, A. (2007). Manipulating and Summarizing Posterior Simulations Using Random Variable Objects. Statistics and Computing 17:3, 235-244.

See also vignette("rv").

Examples

1
2
3
4
  x <- rvnorm(10)
  y <- rvnorm(10)
  cbind(x, y)
  rbind(x, y) 

jsta/rv documentation built on Feb. 12, 2022, 5:13 p.m.