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/z_old_statistic.R
\name{make_wilcox_frame}
\alias{make_wilcox_frame}
\title{Wilcox-Rank Test on nested List}
\usage{
make_wilcox_frame(df_list, column, factor, name = "pValue")
}
\arguments{
\item{df_list}{List of data frames, meta data with expression values and modes}
\item{column}{Character or integer - column name or index (argument x in kruskal.test)}
\item{factor}{Character or integer - column name or index to group by (argument g in kruskal.test)}
\item{name}{Name of the created column containing the p-values}
\item{p_adjust}{Boolean - Conduct p-value adjustement}
}
\description{
Applies the Wilcoxon Rank Test test on a list of data frames.
}
\examples{
lungAgeKruskal <- make.kruskal.frame(lungMetaExpression, "age_at_diagnosis", "mode", "age.kruskal")
}
\keyword{kruskal}
\keyword{test}