concat | R Documentation |
Concatenate two or more ‘pomp’ objects into a list-like ‘listie’.
## S3 method for class 'Pomp'
c(...)
concat(...)
... |
elements to be recursively combined into a ‘listie’ |
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)))
.
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()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.