repair_draws {posterior} | R Documentation |
Repair indices of draws
objects
Description
Repair indices of draws
objects so that iterations, chains, and draws
are continuously and consistently numbered.
Usage
repair_draws(x, order = TRUE, ...)
## S3 method for class 'draws_matrix'
repair_draws(x, order = TRUE, ...)
## S3 method for class 'draws_array'
repair_draws(x, order = TRUE, ...)
## S3 method for class 'draws_df'
repair_draws(x, order = TRUE, ...)
## S3 method for class 'draws_list'
repair_draws(x, order = TRUE, ...)
## S3 method for class 'draws_rvars'
repair_draws(x, order = TRUE, ...)
## S3 method for class 'rvar'
repair_draws(x, order = TRUE, ...)
Arguments
x |
(draws) A |
order |
(logical) Should draws be ordered (via |
... |
Arguments passed to individual methods (if applicable). |
Value
A draws
object of the same class as x
.
See Also
Examples
x <- as_draws_array(example_draws())
(x <- x[10:5, 3:4, ])
repair_draws(x)
[Package posterior version 1.6.0 Index]