Coerce an R object to an nlist_object().

# S3 method for mcmcr
as_nlist(x, ...)

Arguments

x

An object.

...

Unused.

Value

An nlist object.

Methods (by class)

  • as_nlist(numeric): Coerce named numeric vector to nlist

  • as_nlist(list): Coerce list to nlist

  • as_nlist(data.frame): Coerce data.frame to nlist

  • as_nlist(mcmc): Coerce mcmc (with one iteration) to nlist

  • as_nlist(mcmc.list): Coerce mcmc.list (with one iteration) to nlist

See also

Other coerce: as_nlists()

Examples

as_nlist(list(x = 1:4))
#> $x
#> [1] 1 2 3 4
#> 
#> an nlist object with 1 numeric element
as_nlist(c(`a[2]` = 3, `a[1]` = 2))
#> $a
#> [1] 2 3
#> 
#> an nlist object with 1 numeric element