coef.BinaryEPPM: Extraction of model coefficients for BinaryEPPM Objects

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

View source: R/coef.BinaryEPPM.R

Description

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

Usage

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

Arguments

object

fitted model object of class "BinaryEPPM".

prtpar

character indicating coefficients of the fitted model to be output: all coefficients ("full"), coefficients of the model for probability of success ("p"), 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 "BinaryEPPM.

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("ropespores.case")
output.fn <- BinaryEPPM(data = ropespores.case,
                  number.spores / number.tested ~ 1 + offset(logdilution))   
coef(output.fn, prtpar = "full")
coef(output.fn, prtpar = "p")
coef(output.fn, prtpar = "scale.factor")

BinaryEPPM documentation built on July 31, 2019, 5:08 p.m.