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/filter_small_binary.Rd
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
28 lines (25 sloc)
750 Bytes
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/preprocess_coldata.R | |
\name{filter_small_binary} | |
\alias{filter_small_binary} | |
\title{Drop Binary Factors With Few Counts} | |
\usage{ | |
filter_small_binary( | |
summarized_experiment, | |
min_counts = 10, | |
exception = NULL, | |
verbose = T | |
) | |
} | |
\arguments{ | |
\item{summarized_experiment}{Data frame or SE} | |
\item{min_counts}{Integer - minimum amount of counts in factor level} | |
\item{exception}{Character - column names of eceptions if they would fall below threshold. Uses grep} | |
\item{verbose}{Logical - prints names of dropped columns} | |
} | |
\value{ | |
Returns the input object with dropped columns | |
} | |
\description{ | |
This function drops binary factors that have a level with very feq counts. | |
} |