Simulate realizations of a fitted model.
From an HLfit object, simulate.HLfit
function generates new samples given the estimated fixed effects
and dispersion parameters. Simulation may be unconditional (the default, useful in many applications of parametric bootstrap), or conditional on the predicted values of random effects, or may draw from the conditional distribution of random effects given the observed response.
Simulations may be run for the original values of fixed-effect predictor variables and of random effect levels (spatial locations for spatial random effects), or for new values of these.
## S3 method for class 'HLfit' simulate(object, nsim = 1, seed = NULL, newdata = NULL, type = "marginal", re.form, conditional = NULL, verbose = c(type=TRUE, showpbar=eval(spaMM.getOption("barstyle"))), sizes = NULL, resp_testfn = NULL, phi_type = "predict", prior.weights = object$prior.weights, variances=list(), ...) ## S3 method for class 'HLfitlist' simulate(object, nsim = 1, seed = NULL, newdata = object[[1]]$data, sizes = NULL, ...)
object |
The return object of HLfit or similar function. |
nsim |
number of response vectors to simulate. Defaults to '1'. |
seed |
A seed for |
newdata |
A data frame closely matching the original data, except that response values are not needed. May provide new values of fixed predictor variables, new spatial locations, or new individuals within a block. |
re.form |
formula for random effects to condition on. Default behaviour depends on the |
type |
character string specifying which uncertainties are taken into account in the linear predictor and notably in the random effect terms. Whatever the |
conditional |
Obsolete and will be deprecated. Boolean; TRUE and FALSE are equivalent to |
verbose |
Either a single boolean (which determines |
sizes |
A vector of sample sizes to simulate in the case of a binomial fit. Defaults to the sizes in the original data. |
resp_testfn |
NULL, or a function that tests a condition which simulated samples should satisfy. This function takes a response vector as argument and return a boolean (TRUE indicating that the sample satisfies the condition). |
phi_type |
Character string, either |
prior.weights |
Prior weights that may be substituted to those of the original fit, with the same effect on the residual variance. |
variances |
Used when |
... |
further arguments passed to or from other methods; currently only passed to |
type="predVar"
accounts for the uncertainty of the linear predictor, by drawing new values of the predictor in a multivariate gaussian distribution with mean and covariance matrix of prediction. In this case, the user has to provide a variances
argument, passed to predict
, which controls what goes into this covariance matrix. For example, with variances=list(linPred=TRUE,disp=TRUE)
), the covariance matrix takes into account the joint uncertainty in the fixed-effect coefficients and of any random effects given the response and the point estimates of dispersion and correlation parameters ("linPred"
variance component), and in addition accounts for uncertainty in the dispersion parameters (effect of "disp"
variance component as further described in predict.HLfit
). The total simulation variance is then the response variance. Uncertainty in correlation parameters (such a parameters of the Matern family) is not taken into account. The "linPred"
uncertainty is known exactly in LMMs, and otherwise approximated as a Gaussian distribution with mean vector and covariance matrix given as per the Laplace approximation.
type="(ranef|response)"
can be viewed as a special version of type="predVar"
where variances=list(linPred=TRUE,disp=FALSE)
) and only the uncertainty in the random effects is taken into account.
A full discussion of the merits of the different type
s is beyond the scope of this documentation, but these different types may not all be useful. type="marginal"
is typically used for computation of confidence intervals by parametric bootstrap methods. type="residual"
is used by get_cPredVar
for its evaluation of a bias term. The other type
s may be used to simulate the uncertainty in the random effects, conditionally on the data, and may therefore be more akin to the computation of prediction intervals conditionally on an (unknown but inferred) realization of the random effects. But these should presumably not be used in a bootstrap computation of such intervals, as this would represent a double accounting of the uncertainty that the boostrap aims to quantify.
For the HLfitlist
method (i.e., the result of a multinomial fit), a list of simulated responses.
Otherwise, a vector (if nsim=1) or a matrix with nsim columns, each containing a simulated response.
data("Loaloa") HLC <- HLCor(cbind(npos,ntot-npos)~Matern(1|longitude+latitude), data=Loaloa,family=binomial(), ranPars=list(lambda=1,nu=0.5,rho=1/0.7)) simulate(HLC,nsim=2) ## Structured dispersion model data("wafers") hl <- HLfit(y ~X1+X2+X1*X3+X2*X3+I(X2^2)+(1|batch),family=Gamma(log), resid.model = ~ X3+I(X3^2) ,data=wafers) simulate(hl,type="marginal",phi_type="simulate",nsim=2)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.