R/z.b.R

Defines functions z.b

Documented in z.b

z.b <-
function (a, b, c, d, m1, m2) 
{
    cat("Calculation of Z", fill = TRUE)
    Z <- (apply(a, 1, mean) - apply(b, 1, mean))/sqrt((apply(c, 
        1, var)/m1) + (apply(d, 1, var)/m1))
    return(Z)
}

Try the degenes package in your browser

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

degenes documentation built on May 30, 2017, 5:08 a.m.