rename_variables {posterior} | R Documentation |
Rename variables in draws
objects
Description
Rename variables in a draws
object.
Usage
rename_variables(.x, ...)
## S3 method for class 'draws'
rename_variables(.x, ...)
Arguments
.x |
(draws) A |
... |
One or more expressions, separated by commas, indicating the
variables to rename. The variable names can be unquoted
( |
Value
Returns a draws
object of the same format as .x
, with variables renamed
according to the expressions provided in ...
.
See Also
variables
, variables<-
, mutate_variables
Examples
x <- as_draws_df(example_draws())
variables(x)
x <- rename_variables(x, mean = mu, sigma = tau)
variables(x)
x <- rename_variables(x, b = `theta[1]`) # or b = "theta[1]"
variables(x)
# rename all elements of 'theta' at once
x <- rename_variables(x, alpha = theta)
variables(x)
[Package posterior version 1.6.0 Index]