View source: R/predict.polywog.r
predict.polywog | R Documentation |
Generates fitted values, including bootstrap confidence intervals, for in- and out-of-sample data from a fitted polywog model.
## S3 method for class 'polywog'
predict(
object,
newdata,
type = c("link", "response"),
interval = FALSE,
level = 0.95,
bag = FALSE,
na.action = na.pass,
...
)
object |
a fitted model of class |
newdata |
an optional data frame containing observations for which fitted values should be computed. If not specified, fitted values are generated for the data used to fit the model. |
type |
specifies whether the fitted values should be generated on the
link scale ( |
interval |
logical: whether to calculate bootstrap confidence intervals for each fitted value. |
level |
confidence level for the intervals. |
bag |
logical: whether to use "bootstrap aggregation" to generate the
main fitted values (if |
na.action |
a function specifying what to do with observations in
|
... |
other arguments, currently ignored. |
If interval = TRUE
, a matrix containing each fitted value and
its confidence interval. Otherwise, a vector containing the fitted values.
Brenton Kenkel and Curtis S. Signorino
For more user-friendly generation of fitted values, see
predVals
. To compute marginal effects, see
margEff.polywog
.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.