Sets an object's parameter names.

The assignment version pars<-() forwards to set_pars().

# S3 method for term
set_pars(x, value, ...)

Arguments

x

An object.

value

A character vector of the new parameter names.

...

Other arguments passed to methods.

Value

The modified object.

Details

value must be a unique character vector of the same length as the object's parameters.

See also

Other parameters: npars(), pars()

Examples

term <- as_term(c("b[2]", "a[1]", "b[3,3]"))
set_pars(term, c("x", "y"))
#> <term[3]>
#> [1] x[2]   y[1]   x[3,3]