nobs.stanmvreg {rstanarm} | R Documentation |
Methods for stanreg objects
Description
The methods documented on this page are actually some of the least important methods defined for stanreg objects. The most important methods are documented separately, each with its own page. Links to those pages are provided in the See Also section, below.
Usage
## S3 method for class 'stanmvreg'
nobs(object, ...)
## S3 method for class 'stanreg'
coef(object, ...)
## S3 method for class 'stanreg'
confint(object, parm, level = 0.95, ...)
## S3 method for class 'stanreg'
fitted(object, ...)
## S3 method for class 'stanreg'
nobs(object, ...)
## S3 method for class 'stanreg'
residuals(object, ...)
## S3 method for class 'stanreg'
se(object, ...)
## S3 method for class 'stanreg'
update(object, formula., ..., evaluate = TRUE)
## S3 method for class 'stanreg'
vcov(object, correlation = FALSE, ...)
## S3 method for class 'stanreg'
fixef(object, ...)
## S3 method for class 'stanreg'
ngrps(object, ...)
## S3 method for class 'stanreg'
nsamples(object, ...)
## S3 method for class 'stanreg'
ranef(object, ...)
## S3 method for class 'stanreg'
sigma(object, ...)
## S3 method for class 'stanreg'
VarCorr(x, sigma = 1, ...)
Arguments
object , x |
A fitted model object returned by one of the
rstanarm modeling functions. See |
... |
Ignored, except by the |
parm |
For |
level |
For |
formula. , evaluate |
See |
correlation |
For |
sigma |
Ignored (included for compatibility with
|
Details
The methods documented on this page are similar to the methods defined for objects of class 'lm', 'glm', 'glmer', etc. However there are a few key differences:
residuals
-
Residuals are always of type
"response"
(not"deviance"
residuals or any other type). However, in the case ofstan_polr
with more than two response categories, the residuals are the difference between the latent utility and its linear predictor. coef
-
Medians are used for point estimates. See the Point estimates section in
print.stanreg
for more details. se
-
The
se
function returns standard errors based onmad
. See the Uncertainty estimates section inprint.stanreg
for more details. confint
-
For models fit using optimization, confidence intervals are returned via a call to
confint.default
. Ifalgorithm
is"sampling"
,"meanfield"
, or"fullrank"
, theconfint
will throw an error because theposterior_interval
function should be used to compute Bayesian uncertainty intervals. nsamples
-
The number of draws from the posterior distribution obtained
See Also
The
print
,summary
, andprior_summary
methods for stanreg objects for information on the fitted model.-
launch_shinystan
to use the ShinyStan GUI to explore a fitted rstanarm model. The
plot
method to plot estimates and diagnostics.The
pp_check
method for graphical posterior predictive checking.The
posterior_predict
andpredictive_error
methods for predictions and predictive errors.The
posterior_interval
andpredictive_interval
methods for uncertainty intervals for model parameters and predictions.The
loo
,kfold
, andlog_lik
methods for leave-one-out or K-fold cross-validation, model comparison, and computing the log-likelihood of (possibly new) data.The
as.matrix
,as.data.frame
, andas.array
methods to access posterior draws.