Permalink
Cannot retrieve contributors at this time
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?
multimodalR/man/getStatistic.Rd
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
33 lines (32 sloc)
1.12 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% 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)) | |
} | |
} |