zsc {netbenchmark}R Documentation

Z-score c++ function

Description

Z-score c++ function

Usage

    zsc(x)

Arguments

x

Numeric matrix with the microarray dataset to infer the network. Columns contain variables and rows contain samples.

Value

A matrix of numerics with the inferred adjacency matrix.

References

Prill, Robert J., et al. "Towards a rigorous assessment of systems biology models: the DREAM3 challenges." PloS one 5.2 (2010): e9202.

See Also

netbenchmark

Examples

    # Data
    data <- runif(100)
    dim(data) <- c(10,10)
    # Inference
    net <- zsc(data)

[Package netbenchmark version 1.18.0 Index]