- model
copy of argument object
.
- formula_ts
a formula, always cbind(time, x) ~ ts
,
expressing how simulated time series are stored in data_ts
.
- formula_windows
a formula, always cbind(start, end) ~ ts
,
expressing how fitting window endpoints are stored in data_windows
.
- formula_parameters
a formula specifying the generative model.
If Sigma = NULL
, then the formula is ~1
if nsim = 1
and ~ts
if nsim > 1
.
Otherwise, it is ~(1 | ts)
.
- data_ts
a data frame with variables ts
, time
, and x
storing nsim
simulated time series in long format.
- data_windows
a data frame with nsim
rows and variables ts
,
start
, and end
suggesting fitting window endpoints
for each simulated time series. Start times are determined by
cstart
. End times are always the last time point in the
corresponding time series.
- init
a named list of the form list(beta, theta)
giving the full
bottom level parameter vector of the generative model.
- Y
a numeric matrix with nsim
rows and length(mu)
columns
listing top level nonlinear model parameter values for each time series.
If Sigma = NULL
, then the row vectors of are all mu
.
Otherwise, Y
is (conceptually) the result of
MASS::mvrnorm(nsim, mu, Sigma, tol)
.
- call
the call to simulate
, allowing for updates to the
simulate.egf_model
object via update
.