unlist.rv {rv} | R Documentation |
Given a list structure x
, unlist
simplifies it to produce a vector which contains all the atomic components (containing rv objects) which occur in x
.
## S3 method for class 'rv': unlist(x, recursive = TRUE, use.names = TRUE)
x |
An R object, typically a list or vector (containing rv objects) |
recursive |
logical. Should unlisting be applied to list components of x? |
use.names |
logical. Should names be preserved? (now fixed to TRUE) |
This is the rv-compatible version of the function unlist
.
Since unlist
is not a generic function,
the whole name unlist.rv
must be specified when calling the function
when x
is an 'rv' object.
Jouni Kerman jouni@kerman.com
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")
.
x <- list(a=rvnorm(2), b=rvnorm(3)) print(unlist.rv(x))