Learn R Programming

sstModel (version 1.0.0)

print.healthRisk: Printing a HealthRisk

Description

print method for the S3 class healthRisk.

Usage

# S3 method for healthRisk
print(x, ...)

Arguments

x

S3 object of class healthRisk.

...

additional arguments.

Value

None (invisible NULL).

See Also

print, healthRisk.

Examples

Run this code
# NOT RUN {
# 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)
# printing the healthRisk.
print(healthRisk1)

# }

Run the code above in your browser using DataLab