draws_rvars {posterior} | R Documentation |
The draws_rvars
format
Description
The as_draws_rvars()
methods convert
objects to the draws_rvars
format.
The draws_rvars()
function creates an object of the
draws_rvars
format based on a set of numeric vectors.
See Details.
Usage
as_draws_rvars(x, ...)
## Default S3 method:
as_draws_rvars(x, ...)
## S3 method for class 'draws_rvars'
as_draws_rvars(x, ...)
## S3 method for class 'list'
as_draws_rvars(x, ...)
## S3 method for class 'draws_matrix'
as_draws_rvars(x, ...)
## S3 method for class 'draws_array'
as_draws_rvars(x, ...)
## S3 method for class 'draws_df'
as_draws_rvars(x, ...)
## S3 method for class 'draws_list'
as_draws_rvars(x, ...)
## S3 method for class 'mcmc'
as_draws_rvars(x, ...)
## S3 method for class 'mcmc.list'
as_draws_rvars(x, ...)
draws_rvars(..., .nchains = 1)
is_draws_rvars(x)
Arguments
x |
An object to convert to a |
... |
For |
.nchains |
(positive integer) The number of chains. The default is |
Details
Objects of class "draws_rvars"
are lists of rvar
objects.
See Examples.
Value
A draws_rvars
object, which has classes
c("draws_rvars", "draws", "list")
.
See Also
Other formats:
draws
,
draws_array()
,
draws_df()
,
draws_list()
,
draws_matrix()
Examples
x1 <- as_draws_rvars(example_draws())
class(x1)
print(x1)
str(x1)
x2 <- draws_rvars(a = rnorm(10), b = rnorm(10), c = 1)
class(x2)
print(x2)
str(x2)
[Package posterior version 1.6.0 Index]