| nem.bootstrap {nem} | R Documentation |
Performs bootstrapping (resampling with replacement) on effect reporters to assess the statistical stability of networks
nem.bootstrap(D, thresh=0.5, nboot=1000,inference="nem.greedy",models=NULL,control=set.default.parameters(unique(colnames(D))), verbose=TRUE) ## S3 method for class 'nem.bootstrap' print(x, ...)
D |
data matrix with experiments in the columns (binary or continous) |
thresh |
only edges appearing with a higher frequency than "thresh" are returned |
nboot |
number of bootstrap samples desired |
inference |
|
models |
a list of adjacency matrices for model search. If NULL, an exhaustive enumeration of all possible models is performed. |
control |
list of parameters: see |
verbose |
do you want to see progression statements? Default: TRUE |
x |
nem object |
... |
other arguments to pass |
Calls nem or nemModelSelection internally, depending on whether or not lambda is a vector and Pm != NULL. For DEPNs a stratified bootstrap is carried out, where strate are defined on each replicate group for each time point.
nem object with edge weights being the bootstrap probabilities
Holger Froehlich
nem.jackknife, nem.consensus, nem.calcSignificance, nem
## Not run:
data("BoutrosRNAi2002")
D <- BoutrosRNAiDiscrete[,9:16]
nem.bootstrap(D, control=set.default.parameters(unique(colnames(D)), para=c(0.13,0.05)))
## End(Not run)