coef.CountsEPPM: Extraction of model coefficients for CountsEPPM Objects

Description Usage Arguments Details Value Author(s) See Also Examples

View source: R/coef.CountsEPPM.R

Description

Extract the regression model coefficients from models of class "BinaryEPMM".

Usage

1
2
## S3 method for class 'CountsEPPM'
coef(object, prtpar = c("full", "mean", "scale.factor"), ...)

Arguments

object

fitted model object of class "CountsEPPM".

prtpar

character indicating coefficients of the fitted model to be output: all coefficients ("full"), coefficients of the model for probability of success ("mean"), coefficients of the model for scale-factor ("scale.factor")

...

some methods for this generic function require additional arguments.

Details

One of a set of standard extractor functions for fitted model objects of class "CountsEPPM.

Value

Vector of coefficients of fitted regression model.

Author(s)

David M. Smith <smithdm1@us.ibm.com>

See Also

betareg

Examples

1
2
3
4
5
6
data(herons.group)
output.fn  <- CountsEPPM(number.attempts ~ 0 + group,
 herons.group, model.type = 'mean only', model.name = 'Poisson')
coef(output.fn, prtpar = "full")
coef(output.fn, prtpar = "mean")
coef(output.fn, prtpar = "scale.factor")

CountsEPPM documentation built on May 1, 2019, 10:25 p.m.