Description Usage Format Examples
A simulated data set from three studies, with 10000 "features" in each study, each of which yielded a z-score. The data comprises 10000x3 z-scores.
See hmat_sim
for the indicators of association status matrix.
1 |
zmat_sim
is a matrix of 10000 z-scores (in rows) in each of the 3 studies (columns).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | data(zmat_sim)
head(zmat_sim)
## Not run:
input.to.repfdr <- ztobins(zmat_sim, 2 )
pbz_sim1 <- input.to.repfdr$pdf.binned.z
bz_sim1 <- input.to.repfdr$binned.z.mat
data(binned_zmat_sim)
stopifnot(all.equal(pbz_sim1,pbz_sim))
stopifnot(all.equal(bz_sim1,bz_sim))
## End(Not run)
#### zmat_sim was generated by the following code:
data(hmat_sim)
set.seed(12)
m <- nrow(hmat_sim)
zmat_sim1 <- matrix(rnorm(n=3*m,mean=hmat_sim*3),nrow=m,ncol=3)
data(zmat_sim)
stopifnot(all.equal(zmat_sim1,zmat_sim))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.