Use this function to quickly construct a term_rcrd object.

new_term_rcrd(
  x = data.frame(par = character(), dim = I(list()), stringsAsFactors = FALSE)
)

Arguments

x

A data frame with columns par and dim.

See also

Examples

new_term_rcrd()
#> <term_rcrd[0]>
if (FALSE) {
new_term_rcrd(data.frame(
  par = c("x", "x", "y"), dim = I(list(1, 2, c(2,2))),
  stringsAsFactors = FALSE
))
}