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/make_wilcox_frame.Rd
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
27 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/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} |