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/reorder_all.Rd
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
26 lines (23 sloc)
886 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{reorder_all} | |
\alias{reorder_all} | |
\title{Uses reorder.column on all eligible columns} | |
\usage{ | |
reorder_all(summarized_experiment, exception = NULL, unnest = F, threshold = 0) | |
} | |
\arguments{ | |
\item{summarized_experiment}{A large list created prior by multimodalR} | |
\item{exception}{Character - One or more column names that should not be processed by this function} | |
\item{unnest}{Logical - Unnest data?} | |
\item{threshold}{Integer - remove >= counts of the factor level} | |
} | |
\value{ | |
Returns the data frame with filtered/ordered columns. | |
} | |
\description{ | |
This function removes factor levels with less counts than a set value of every column. Additionally, it reorders the factor levels depending on the counts. | |
} | |
\examples{ | |
lungMeta <- reorder_all(lungMeta, c("tumor_stage", "race"), 10) | |
} |