Skip to content
Permalink
master
Switch branches/tags

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?
Go to file
 
 
Cannot retrieve contributors at this time
% 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.
}