RepeatedHighDim: Detection of global group effect

Description Usage Arguments Details Value Author(s) References Examples

View source: R/repeated_high_dim.R

Description

Detection of global group effect

Usage

1
RepeatedHighDim(X1, X2, paired = TRUE)

Arguments

X1

Matrix of expression levels in first group. Rows represent features, columns represent samples.

X2

Matrix of expression levels in second group. Rows represent features, columns represent samples.

paired

FALSE if samples are unpaired, TRUE if samples are paired.

Details

Global test for a set of molecular features (e.g. genes, proteins,...) between two experimental groups. Paired or unpaired design is allowed.

Value

An object that contains the test results. Contents can be displayed by the summary function.

Author(s)

Klaus Jung

References

Examples

1
2
3
4
5
###### Global comparison of a set of 100 genes between two experimental groups.
X1 = matrix(rnorm(1000, 0, 1), 10, 100)
X2 = matrix(rnorm(1000, 0.1, 1), 10, 100)
RHD = RepeatedHighDim(X1, X2, paired=FALSE)
summary(RHD)

jkruppa/RepeatedHighDim documentation built on May 19, 2019, 12:45 p.m.