Learn R Programming

isotracer (version 1.1.8)

predict.networkModel: Add a column with predictions from a fit

Description

Add a column with predictions from a fit

Usage

# S3 method for networkModel
predict(
  object,
  fit,
  draws = NULL,
  error.draws = 5,
  probs = 0.95,
  cores = NULL,
  dt = NULL,
  grid_size = NULL,
  at = NULL,
  end = NULL,
  ...
)

Value

A network model object with an added column "prediction".

Arguments

object

Network model

fit

Model fit (mcmc.list object)

draws

Integer, number of draws from the posteriors

error.draws

Integer, number of draws from the error distribution, for a given posterior draw.

probs

Credible interval (default 0.95).

cores

Number of cores to use for parallel calculations. Default is NULL, which means to use the value stored in options()[["mc.cores"]] (or 1 if this value is not set).

dt, grid_size

Time step size or grid points, respectively.

at

Timepoints at which the predictions should be returned.

end

Final timepoint used in the projections.

...

Not used.