summary.tariff: Summary of the results obtained from Tariff algorithm

Description Usage Arguments Examples

View source: R/Tarrif.summary.r

Description

This function prints the summary message of the fitted results.

Usage

1
2
## S3 method for class 'tariff'
summary(object, top = 5, id = NULL, ...)

Arguments

object

fitted object from tariff

top

number of top CSMF to show

id

the ID of a specific death to show

...

not used

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
data("RandomVA3")
test <- RandomVA3[1:200, ]
train <- RandomVA3[201:400, ]
allcauses <- unique(train$cause)
fit <- tariff(causes.train = "cause", symps.train = train, 
			symps.test = test, causes.table = allcauses)
correct <- which(fit$causes.test[,2] == test$cause)
accuracy <- length(correct) / dim(test)[1]
summary(fit)
summary(fit, top = 10)
summary(fit, id = "p849", top = 3)

Tariff documentation built on May 2, 2019, 3:35 p.m.