Description Usage Arguments Value References See Also Examples
Gives variable orderings for linear regression in high-dimensional data by various approaches.
1 |
x |
A matrix whose columns correspond to variables or genes and whose rows correspond to the observations. |
y |
A vector of response values for fitting a linear model to a subset of
the variables in |
prior.prob |
A vector of prior probabilities corresponding to the variables (genes). |
ordering |
A character string specifying the method to be used for the ordering the variables.
|
A vector of integers corresponding to the variable indexes in the specified order.
K. Lo, A. E. Raftery, K. M. Dombek, J. Zhu, E. E. Schadt, R. E. Bumgarner and K. Y. Yeung (2012), Integrating External Biological Knowledge in the Construction of Regulatory Networks from Time-series Expression Data, BMC Systems Biology, 6:101.
K. Y. Yeung, K. M. Dombek, K. Lo, J. E. Mittler, J. Zhu, E. E. Schadt, R. E. Bumgarner and A. E. Raftery (2011), Construction of regulatory networks using expression time-series data of a genotyped population, Proceedings of the National Academy of Sciences, 108(48):19436-41.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | data(dream4)
network <- 1
Time <- as.numeric(dream4ts100[[network]]$time)
xIndex <- which(Time != max(Time))
yIndex <- which(Time != min(Time))
gene <- "G1"
x <- dream4ts100[[network]][xIndex,-(1:2)]
y <- dream4ts100[[network]][yIndex,gene]
nvar <- 50
ord <- varord( x, y, ordering = "bic1")[1:nvar]
## Not run:
result <- iterateBMAlm( x = x[,ord], y = y)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.