The zelig function estimates a variety of statistical
models. Use zelig
output with setx
and sim
to compute
quantities of interest, such as predicted probabilities, expected values, and
first differences, along with the associated measures of uncertainty
(standard errors and confidence intervals).
zelig(formula, model, data, ..., by = NULL, cite = TRUE)
formula | a symbolic representation of the model to be
estimated, in the form |
---|---|
model | the name of a statistical model to estimate. For a list of other supported models and their documentation see: http://docs.zeligproject.org/articles/. |
data | the name of a data frame containing the variables
referenced in the formula or a list of multiply imputed data frames
each having the same variable names and row numbers (created by
|
... | additional arguments passed to |
by | a factor variable contained in |
cite | If is set to 'TRUE' (default), the model citation will be printed to the console. |
Depending on the class of model selected, zelig
will return
an object with elements including coefficients
, residuals
,
and formula
which may be summarized using
summary(z.out)
or individually extracted using, for example,
coef(z.out)
. See
http://docs.zeligproject.org/articles/getters.html for a list of
functions to extract model components. You can also extract whole fitted
model objects using from_zelig_model
.
This documentation describes the zelig
Zelig 4 compatibility wrapper
function.
Additional parameters avaialable to many models include:
weights: vector of weight values or a name of a variable in the dataset by which to weight the model. For more information see: http://docs.zeligproject.org/articles/weights.html.
bootstrap: logical or numeric. If FALSE
don't use bootstraps to
robustly estimate uncertainty around model parameters due to sampling error.
If an integer is supplied, the number of boostraps to run.
For more information see:
http://docs.zeligproject.org/articles/bootstraps.html.