pars.term_rcrd {term}R Documentation

Parameter Names

Description

Gets the parameter names.

Usage

## S3 method for class 'term_rcrd'
pars(x, scalar = NULL, ...)

Arguments

x

An object.

scalar

A flag specifying whether to by default return all parameters (NULL), or only scalar parameters (TRUE) or only non-scalar parameters (FALSE).

...

Other arguments passed to methods.

Value

A character vector of the names of the parameters.

See Also

universals::pars

Other parameters: pars.character(), pars.default(), pars.term(), pars_terms()

Examples

term <- term(
  "alpha[1]", "alpha[2]", "beta[1,1]", "beta[2,1]",
  "beta[1,2]", "beta[2,2]", "sigma", NA
)
pars(term)
pars(term, scalar = TRUE)
pars(term, scalar = FALSE)

[Package term version 0.3.5 Index]