Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/evaluate.R
\name{getStatistic}
\alias{getStatistic}
\title{getStatistic}
\usage{
getStatistic(evaluation, algorithmName = "mclust")
}
\arguments{
\item{evaluation}{The output of the evaluation of the formatted output}
\item{algorithmName}{The name of the algorithm which created the output}
}
\value{
A data frame with the percentual proportion of as TRUE or FALSE evaluated values
}
\description{
This function produces informations about the evaluation of one
algorithms. The result is a data frame where the percentage of as TRUE and
as FALSE evaluated values of the genes
}
\examples{
\dontrun{
params <- newParams(nGenes = list("1"=10,"2"=list("gauss"= 10,"gamma"= 10)))
simulation <- simulateExpression(params= params,verbose=FALSE)
expression <- simulation$expressionData
validationData <- simulation$validationData
mclustOutput <- useMclust(expression, verbose=FALSE)
mclustEvaluation <- evaluateAlgorithmOutput(modality = 2, algorithmOutput = mclustOutput,
validationData = validationData)
getStatistics(evaluations = list("mclust" = mclustEvaluation))
}
}