Learn R Programming

posterior (version 1.6.0)

rename_variables: Rename variables in draws objects

Description

Rename variables in a draws object.

Usage

rename_variables(.x, ...)

# S3 method for draws rename_variables(.x, ...)

Value

Returns a draws object of the same format as .x, with variables renamed according to the expressions provided in ....

Arguments

.x

(draws) A draws object.

...

One or more expressions, separated by commas, indicating the variables to rename. The variable names can be unquoted (new_name = old_name) or quoted ("new_name" = "old_name"). For non-scalar variables, all elements can be renamed together ("new_name" = "old_name") or they can be renamed individually ("new_name[1]" = "old_name[1]").

See Also

variables, variables<-, mutate_variables

Examples

Run this code
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)

Run the code above in your browser using DataLab