summary.FCBMA: Summarizing FCBMA method

Description Usage Arguments Examples

View source: R/summary.FCBMA.R

Description

Summary method for class "FCBMA"

Usage

1
2
3
4
5
## S3 method for class 'FCBMA'
summary(object, ...)

## S3 method for class 'summary.FCBMA'
print(x, digits = getOption("digits"), ...)

Arguments

object

An object of class "FCBMA" resulting of a call to FCBMA.

...

Further arguments passed to or from other methods.

x

An object of class "summary.FCBMA", usually a result of a call to summary.FCBMA.

digits

The number of significant digits to use when printing.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
data("sweden")
m1 <- glm(Claims ~ Kilometres+Zone+Bonus+Make, offset = log(Insured),
          data = sweden, family = "poisson")
summary(m1)

m2 <- FCBMA(m1,
            varia.list = c("Kilometres"),
            method = "complete",
            verbose = FALSE)
summary(m2)

senhu/FCBMA documentation built on Aug. 6, 2019, 4:56 p.m.