R/zscore.wrap.R

Defines functions zscore.wrap

Documented in zscore.wrap

zscore.wrap <- function(data){
    Z <- zsc(as.matrix(data))
    Z <- abs(Z)
    colnames(Z) <- colnames(data)
    rownames(Z) <- colnames(data)
    Z <- pmax(Z,t(Z))
    Z
}

Try the netbenchmark package in your browser

Any scripts or data that you put into this service are public.

netbenchmark documentation built on May 2, 2019, 6:08 p.m.