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/verify_mclust.R
\name{is_correct}
\alias{is_correct}
\title{Check classification}
\usage{
is_correct(mclust_result, min_prop = NULL, return_classification = FALSE)
}
\arguments{
\item{mclust_result}{Object of class Mclust (Result of Mclust)}
\item{return_classification}{Logical - if TRUE then the classification matrix is returned with colnames "V1" = expression values and "classification" = classification/mode}
}
\value{
Returns logical value either if classification is in correct order or if proportions are at least min_proportion
}
\description{
This function checks if the classification is correct. Meaning that expression values assigned to a higher mode should also have a higher expression than lower modes. And also whether the proportion is correct.
}
\details{
This function is called by \code{\link[mmRmeta]{correct_output}}. Sometimes, when applying Mclust with modelNames = "V" the classification are sometimes not in order/not correct.
}