print.lifeRisk: Printing a LifeRisk

Description Usage Arguments Value See Also Examples

Description

print method for the S3 class lifeRisk.

Usage

1
2
## S3 method for class 'lifeRisk'
print(x, ...)

Arguments

x

an S3 object of class lifeRisk.

...

additional arguments.

Value

None (invisible NULL).

See Also

print, lifeRisk.

Examples

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

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

lifeRisk1 <- lifeRisk(corr.mat  = corr.mat,
                      quantile = c(0.995, 0.995))
# printing the lifeRisk.
print(lifeRisk1)

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