coef.bbreg {bbreg} | R Documentation |
coef.bbreg
Description
Function to extract the coefficients of a fitted regression model (bessel or beta).
Usage
## S3 method for class 'bbreg'
coef(object, parameters = c("all", "mean", "precision"), ...)
Arguments
object |
object of class "bbreg" containing results from the fitted model. |
parameters |
a string to determine which coefficients should be extracted: 'all' extracts all coefficients, 'mean' extracts the coefficients of the mean parameters and 'precision' extracts coefficients of the precision parameters. |
... |
further arguments passed to or from other methods. |
See Also
fitted.bbreg
, summary.bbreg
, vcov.bbreg
, plot.bbreg
, predict.bbreg
Examples
fit = bbreg(agreement ~ priming + eliciting, data = WT)
coef(fit)
coef(fit, parameters = "precision")
[Package bbreg version 2.0.2 Index]