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?
mmRmeta/man/is_correct.Rd
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
22 lines (21 sloc)
1.01 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/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. | |
} |