Last data update: 2014.03.03

R: Validates a model using validaing samples.
doctor.validateR Documentation

Validates a model using validaing samples.

Description

A model fitted on the training samples, can be validated on a separate validating set. The recall, precision, and accuracy of the model are computed.

Usage

doctor.validate(true.labels, predictions)

Arguments

true.labels

A vector of 0 and 1.

predictions

A vector of 0 and 1.

Details

F-measure is equal to: 2 times precision times recall / (precision+recall).

Value

F-measure, precision, and recall are calculated. Also, the mis-labelled cases are reported.

Author(s)

Habil Zare

References

"Statistical Analysis of Overfitting Features", manuscript in preparation.

See Also

FeaLect, train.doctor, doctor.validate, random.subset, compute.balanced,compute.logistic.score, ignore.redundant, input.check.FeaLect

Examples

tls <- c(1,1,1,0,0)
ps <- c(1,1,0,1,0)
names(tls) <- 1:5; names(ps) <- 1:5

doctor.validate(true.labels=tls, predictions=ps)

Results


R version 3.3.1 (2016-06-21) -- "Bug in Your Hair"
Copyright (C) 2016 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)

R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.

R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.

Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.

> library(FeaLect)
Loading required package: lars
Loaded lars 1.2

Loading required package: rms
Loading required package: Hmisc
Loading required package: lattice
Loading required package: survival
Loading required package: Formula
Loading required package: ggplot2

Attaching package: 'Hmisc'

The following objects are masked from 'package:base':

    format.pval, round.POSIXt, trunc.POSIXt, units

Loading required package: SparseM

Attaching package: 'SparseM'

The following object is masked from 'package:base':

    backsolve

> png(filename="/home/ddbj/snapshot/RGM3/R_CC/result/FeaLect/doctor.validate.Rd_%03d_medium.png", width=480, height=480)
> ### Name: doctor.validate
> ### Title: Validates a model using validaing samples.
> ### Aliases: doctor.validate
> ### Keywords: regression multivariate classif models
> 
> ### ** Examples
> 
> tls <- c(1,1,1,0,0)
> ps <- c(1,1,0,1,0)
> names(tls) <- 1:5; names(ps) <- 1:5
> 
> doctor.validate(true.labels=tls, predictions=ps)
$f.measure
[1] 0.6666667

$mislabeled
[1] "4" "3"

$precision
[1] 0.6666667

$recall
[1] 0.6666667

> 
> 
> 
> 
> 
> 
> dev.off()
null device 
          1 
>