Learn R Programming

LibOPF (version 2.5.0)

opf_write_classification: Writes into a file the predicted labels produced by the opf classificator

Description

Writes into a file the predicted labels produced by the opf classificator

Usage

opf_write_classification(classes, file)

Arguments

classes

The classification list (i.e.,predicted labels) produced by the classifier

file

Where you want to save the classification vector

Value

`NULL`

Examples

Run this code
# NOT RUN {
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)
opf_write_classification(Y$classification, file.path(tempdir(), "classification.txt"))

# }

Run the code above in your browser using DataLab