Learn R Programming

RepeatedHighDim (version 2.3.0)

RHighDim: Detection of global group effect

Description

Detection of global group effect

Usage

RHighDim(X1, X2, paired = TRUE)

Value

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

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.

Author

Klaus Jung

Details

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

References

Brunner, E (2009) Repeated measures under non-sphericity. Proceedings of the 6th St. Petersburg Workshop on Simulation, 605-609.

Jung K, Becker B, Brunner B and Beissbarth T (2011) Comparison of Global Tests for Functional Gene Sets in Two-Group Designs and Selection of Potentially Effect-causing Genes. Bioinformatics, 27, 1377-1383. tools:::Rd_expr_doi("10.1093/bioinformatics/btr152")

See Also

For more information, please refer to the package's documentation and the tutorial: https://software.klausjung-lab.de/.

Examples

Run this code
### 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 = RHighDim(X1, X2, paired=FALSE)
summary_RHD(RHD)

Run the code above in your browser using DataLab