| 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 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 <- list(a=rvnorm(2), b=rvnorm(3)) print(unlist.rv(x))