a b/OmicsFold/man/low.count.removal.Rd
1
% Generated by roxygen2: do not edit by hand
2
% Please edit documentation in R/MixMC.R
3
\name{low.count.removal}
4
\alias{low.count.removal}
5
\title{Remove features with low counts across samples}
6
\usage{
7
low.count.removal(otu.counts, percent = 0.01)
8
}
9
\arguments{
10
\item{otu.counts}{OTU count data frame of size n (sample) x p (OTU).}
11
12
\item{percent}{Cutoff chosen in percent, default to 0.01.}
13
}
14
\value{
15
Data frame of input data, filtered to omit features below the count
16
proportion threshold.
17
}
18
\description{
19
Prefilter omics analysis input data in count form (e.g. OTUs) to remove
20
features which have a total count less than a (small) proportion of the total
21
measured counts. The default threshold is one part in 10,000 (0.01\%) - this
22
is usually sufficient to remove very low-count variables, which will be
23
unreliable features for model prediction.
24
}
25
\examples{
26
\dontrun{
27
low.count.filter(raw.count)
28
}
29
}