zsc {netbenchmark} | R Documentation |
Z-score c++ function
zsc(x)
x |
Numeric matrix with the microarray dataset to infer the network. Columns contain variables and rows contain samples. |
A matrix of numerics with the inferred adjacency matrix.
Prill, Robert J., et al. "Towards a rigorous assessment of systems biology models: the DREAM3 challenges." PloS one 5.2 (2010): e9202.
# Data data <- runif(100) dim(data) <- c(10,10) # Inference net <- zsc(data)