summary.healthRisk: Summarizing a HealthRisk

Description Usage Arguments Value See Also Examples

Description

summary method for the S3 class healthRisk.

Usage

1
2
## S3 method for class 'healthRisk'
summary(object, ...)

Arguments

object

S3 object of class healthRisk.

...

additional arguments.

Value

an S3 object, instance of class c("summaryDefault", "table").

See Also

summary, healthRisk.

Examples

1
2
3
4
5
6
7
8
9
# Creating a new healthRisk.

corr.mat <- diag(rep(1, 2))
colnames(corr.mat) <- c("invalidity", "longetivity")
rownames(corr.mat) <- colnames(corr.mat)

healthRisk1 <- healthRisk(corr.mat  = corr.mat)
# summarizing the healthRisk.
summary(healthRisk1)

sstModel documentation built on May 2, 2019, 12:16 p.m.