delaneau.test: Test association between correlation sturucture and variable

View source: R/other_corr_tests.R

delaneau.testR Documentation

Test association between correlation sturucture and variable

Description

Score impact of each sample on correlation sturucture and then peform test of association with variable using Kruskal-Wallis test

Usage

delaneau.test(Y, variable, method = c("pearson", "kendall", "spearman"))

Arguments

Y

data matrix with samples on rows and variables on columns

variable

variable with number of entries must equal nrow(Y). Can be discrete or continuous.

method

specify which correlation method: "pearson", "kendall" or "spearman"

Details

The statistical test used depends on the variable specified. if variable is factor with multiple levels, use Kruskal-Wallis test if variable is factor with 2 levels, use Wilcoxon test if variable is continuous, use Wilcoxon test

Value

list of p-value, estimate and method used

See Also

delaneau.score sle.test

Examples

# load iris data
data(iris)

# variable is factor with multiple levels
# use kruskal.test
delaneau.test( iris[,1:4], iris[,5] )

# variable is factor with 2 levels
# use wilcox.test
delaneau.test( iris[1:100,1:4], iris[1:100,5] )

# variable is continuous
# use cor.test with spearman
delaneau.test( iris[,1:4], iris[,1] )


GabrielHoffman/decorate documentation built on May 23, 2023, 1:29 a.m.