opf_accuracy4label: Computes the OPF accuracy for each class of a given set

View source: R/LibOPF.R

opf_accuracy4labelR Documentation

Computes the OPF accuracy for each class of a given set

Description

Computes the OPF accuracy for each class of a given set

Usage

opf_accuracy4label(dataSet, classification)

Arguments

dataSet

Data object used in in the opf_classify function (subGraph object), normaly is the testing object

classification

The output list produced by opf_classify function

Value

Returns the classification accuracy for each class

Examples

dat <- opf_read_subGraph(system.file("extdata/boat.dat",package = "LibOPF"))
X <- opf_split(dat,0.5,0,0.5,0)
T <- X$training
T2 <- X$testing
Y <- opf_train(T)
class <- opf_classify(T2, Y$classifier)
acc <- opf_accuracy4label(T2, class)


LibOPF documentation built on Feb. 16, 2023, 10:13 p.m.