RepeatedHighDim-package: Global tests for expression data of high-dimensional sets of...

Description References Examples

Description

Global tests for expression data of high-dimensional sets of molecular features. Global tests for expression data of high-dimensional sets of molecular features.

References

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
### 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)

### Global comparison of a set of 100 proteins between two
### experimental groups, where (tau * 100) percent of expression
### levels are missing.
n1 = 10
n2 = 10
d = 100
tau = 0.1
X1 = t(matrix(rnorm(n1*d, 0, 1), n1, d))
X2 = t(matrix(rnorm(n2*d, 0.1, 1), n2, d))
X1[sample(1:(n1*d), tau * (n1*d))] = NA
X2[sample(1:(n2*d), tau * (n2*d))] = NA
GlobTestMissing(X1, X2, nperm=100)

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