topCOD.nbc {nbc4va}R Documentation

Cause of death predictions from a NBC model

Description

Obtains the top causes of deaths for each testing case from a result nbc object.

Usage

topCOD.nbc(object)

Arguments

object

The result nbc object.

Value

out A dataframe of the top CODs:

See Also

Other wrapper functions: csmf.nbc()

Examples

library(nbc4va)
data(nbc4vaData)

# Run naive bayes classifier on random train and test data
train <- nbc4vaData[1:50, ]
test <- nbc4vaData[51:100, ]
results <- nbc(train, test)

# Obtain the top cause of death predictions for the test data
topPreds <- topCOD.nbc(results)


[Package nbc4va version 1.2 Index]