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/useFlexmix.Rd
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
44 lines (39 sloc)
1.55 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/algorithmSpecificFunctions.R | |
\name{useFlexmix} | |
\alias{useFlexmix} | |
\title{UseFlexmix} | |
\usage{ | |
useFlexmix(expression, maxModality = 3, verbose = TRUE, parallel = FALSE, | |
pathToClinicalData = "pathTo/clinicalData", | |
pathToExpressionmatrix = "pathTo/expressionmatrix") | |
} | |
\arguments{ | |
\item{expression}{(Simulated) Gene Expression data frame which genes shall | |
be classified as unimodal, bimodal or other} | |
\item{maxModality}{numerical. maximum modality for that models will be calculated} | |
\item{verbose}{logical. Whether to print progress messages} | |
\item{parallel}{logical. Whether to calculate the models in parallel} | |
\item{pathToClinicalData}{If real data is used the path | |
to the clinical data can be stored here} | |
\item{pathToExpressionmatrix}{If real data is used the path | |
to the gene expression matrix can be stored here} | |
} | |
\value{ | |
flexmixOutput The formatted output of the best fitting models from flexmix | |
} | |
\description{ | |
Use the FlexMix algorithm to create models and to find the best fitting | |
model to evaluate the classification (unimodal,bimodal or other) of genes. | |
} | |
\examples{ | |
\dontrun{ | |
params <- newParams(nGenes = list("1"=75,"2"=list("gauss"= 75,"gamma"= 75))) | |
simulation <- simulateExpression(params= params,verbose=FALSE) | |
expression <- simulation$expressionData | |
#with messages printed to console | |
flexmixOutput <- useFlexmix(expression = expression, maxModality = 2) | |
#without messages printed to console | |
flexmixOutput <- useFlexmix(expression = expression, maxModality = 2, verbose = FALSE) | |
} | |
} |