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{use_kruskal_test}
\alias{use_kruskal_test}
\title{Kruskal-Wallis Test}
\usage{
use_kruskal_test(df, col_con, col_fac)
}
\arguments{
\item{column}{A column of the data frame (argument x in kruskal.test)}
\item{factor}{A column of the data frame to group by (argument g in kruskal.test)}
}
\value{
Returns the p-value of the kruskal-wallis test.
}
\description{
This function applies \link{kruskal.test} on a data frame.
}
\examples{
ageKruskal <- use.kruskal.test(lungMeta, "age_at_diagnosis", "gender") #Is there a difference regarding the age of the two genders?
}