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_column.Rd
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
25 lines (23 sloc)
925 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_column} | |
\alias{reorder_column} | |
\title{Remove small factor levels and reorder} | |
\usage{ | |
reorder_column(summarized_experiment, column, threshold = 0) | |
} | |
\arguments{ | |
\item{summarized_experiment}{A large list created prior by multimodalR.} | |
\item{column}{Character - column name} | |
\item{threshold}{Integer - threshold of counts; any factor level with equal or less counts are discarded} | |
} | |
\value{ | |
Returns the same large list with changed column names of the expressionmatrix. | |
} | |
\description{ | |
This function removes factor levels with counts less than a set value. Additionally, it reorders the factor levels depending on the counts. | |
This may be necessary later on to get ordered labels when plotting. | |
} | |
\examples{ | |
lungMeta <- reorder.colums(lungMeta, "primary_diagnosis", 10) #keeps factor levels with >= 10 counts. | |
} |