Learn R Programming

posterior (version 1.6.0)

extract_variable: Extract draws of a single variable

Description

Extract a vector of draws of a single variable.

Usage

extract_variable(x, variable, ...)

# S3 method for default extract_variable(x, variable, ...)

# S3 method for draws extract_variable(x, variable, ...)

# S3 method for draws_df extract_variable(x, variable, ...)

# S3 method for draws_list extract_variable(x, variable, ...)

# S3 method for draws_rvars extract_variable(x, variable, ...)

Value

A vector of length equal to the number of draws.

Arguments

x

(draws) A draws object or another R object for which the method is defined.

variable

(string) The name of the variable to extract. Must include indices for array variables (e.g. "x[1]", "y[1,2]"). To extract all dimensions from variables with indices, use extract_variable_array().

...

Arguments passed to individual methods (if applicable).

See Also

Other variable extraction methods: extract_variable_array(), extract_variable_matrix()

Examples

Run this code
x <- example_draws()
mu <- extract_variable(x, variable = "mu")
str(mu)

Run the code above in your browser using DataLab