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_kruskal_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.
28 lines (24 sloc)
1.14 KB
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_kruskal_frame} | |
\alias{make_kruskal_frame} | |
\title{Kruskal-Wallice Test on nested List} | |
\usage{ | |
make_kruskal_frame(df_list, column, factor, name = "pValue", p_adjust = NULL) | |
} | |
\arguments{ | |
\item{df_list}{List of data frames, meta data with expression values and mode} | |
\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 Kruskal-Wallice test on a list of data frames. Only works on lists. The test calculates if the medians of two/or more groups are significantly different. It is therefore independent from | |
normal distribution. This function applies the non parametric test on all data frames in the list, using \link{use_prop_test} | |
} | |
\examples{ | |
lungAgeKruskal <- make_kruskal_frame(lungMetaExpression, "age_at_diagnosis", "mode", "age.kruskal") | |
} | |
\keyword{kruskal} | |
\keyword{test} |