concat function

Concatenate

Concatenate

Concatenate two or more pomp objects into a list-like listie .

## S3 method for class 'Pomp' c(...) concat(...)

Arguments

  • ...: elements to be recursively combined into a listie

Details

concat applied to one or more pomp objects or lists of pomp objects converts the list into a listie . In particular, concat(A,B,C) is equivalent to do.call(c,unlist(list(A,B,C))).

Examples

gompertz(sigma=2,tau=1) -> g Np <- c(low=100,med=1000,high=10000) lapply( Np, \(np) pfilter(g,Np=np) ) |> concat() -> pfs pfs coef(pfs) logLik(pfs) eff_sample_size(pfs) cond_logLik(pfs) pfs |> plot()
  • Maintainer: Aaron A. King
  • License: GPL-3
  • Last published: 2025-04-16