This is a convenience function for computing \(y - y^{rep}\)
(in-sample, for observed \(y\)) or \(y - \tilde{y}\)
(out-of-sample, for new or held-out \(y\)). The method for stapreg objects
calls posterior_predict internally, whereas the method for
objects with class "ppd" accepts the matrix returned by
posterior_predict as input and can be used to avoid multiple calls to
posterior_predict.
The rstap model-fitting functions return an object of class
'stapreg', which is a list containing at a minimum the components listed
below. Each stapreg object will also have additional classes (e.g. 'glm')
and several additional components depending on the model and estimation
algorithm.
# S3 method for stapreg
predictive_error(object, newsubjdata = NULL,
newdistdata = NULL, newtimedata = NULL, draws = NULL,
re.form = NULL, seed = NULL, offset = NULL, ...)Either a fitted model object returned by one of the
rstap modeling functions (a stapreg
object) or, for the "ppd" method, a matrix of draws from the
posterior predictive distribution returned by
posterior_predict.
Optional arguments passed to
posterior_predict. For binomial models, please see the
Note section below if newsubjdata will be specified.
Currently ignored.
A draws by nrow(newsubjdata) matrix. If newsubjdata is
not specified then it will be draws by nobs(object).
coefficientsPoint estimates, as described in print.stapreg.
sesStandard errors based on mad, as described in
print.stapreg.
residualsResiduals of type 'response'.
fitted.valuesFitted mean values. For GLMs the linear predictors are transformed by the inverse link function.
linear.predictorsLinear fit on the link scale. For linear models this is the same as
fitted.values.
covmatVariance-covariance matrix for the coefficients based on draws from the posterior distribution, the variational approximation, or the asymptotic sampling distribution, depending on the estimation algorithm.
model,x,y,zIf requested, the the model frame, model matrix and response variable used, respectively. Note that z corresponds to the fixed covariates, z to the spatial aggregated covariates, and y the response.
familyThe family object used.
callThe matched call.
formulaThe model formula.
data,offset,weightsThe data, offset, and weights arguments.
prior.infoA list with information about the prior distributions used.
stapfit,stan_summaryThe object of stanfit-class returned by RStan and a
matrix of various summary statistics from the stapfit object.
rstan_versionThe version of the rstan package that was used to fit the model.
posterior_predict to draw
from the posterior predictive distribution without computing predictive
errors.