View source: R/missingValuesFilter.R
GetIndices_WholeMatrix | R Documentation |
This function looks for the lines that respect the request in either all conditions or at least one condition.
GetIndices_WholeMatrix(metacell.mask, op = "==", percent = FALSE, th = 0)
metacell.mask |
xxx |
op |
String for operator to use. List of operators is available with SymFilteringOperators(). |
percent |
A boolean to indicate whether the threshold represent an absolute value (percent = FALSE) or a percentage (percent=TRUE). |
th |
A floating number which is in the interval [0, 1] |
utils::data(Exp1_R25_pept, package='DAPARdata') obj <- Exp1_R25_pept[1:10] level <- obj@experimentData@other$typeOfData pattern <- 'missing' metacell.mask <- match.metacell(metadata=GetMetacell(obj), pattern=pattern, level=level) percent <- FALSE th <- 3 op <- '>=' ind <- GetIndices_WholeMatrix(metacell.mask, op, percent, th)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.