R/RcppExports.R

Defines functions FmeasureC FmeasureC_no0

Documented in FmeasureC FmeasureC_no0

# Generated by using Rcpp::compileAttributes() -> do not edit by hand
# Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393

#' C++ implementation of the F-measure computation
#' 
#'@param pred vector of a predicted partition
#'@param ref vector of a reference partition
#'
#'@author Boris Hejblum
#'
#'@export
#'
FmeasureC <- function(pred, ref) {
    .Call(`_cytometree_FmeasureC`, pred, ref)
}

#' C++ implementation of the F-measure computation without the reference class labeled "0"
#' 
#' Aghaeepour in FlowCAP 1 ignore the reference class labeled "0"
#' 
#' 
#'@param pred vector of a predicted partition
#'@param ref vector of a reference partition
#'
#'@author Boris Hejblum
#'
#'@export
#'
FmeasureC_no0 <- function(pred, ref) {
    .Call(`_cytometree_FmeasureC_no0`, pred, ref)
}

Try the cytometree package in your browser

Any scripts or data that you put into this service are public.

cytometree documentation built on Dec. 5, 2019, 1:06 a.m.