R/coef.summary.svabu.R

Defines functions coef.summary.svabu

coef.summary.svabu <-
function(object, ...)
{
    x <- object
    sta <- array(t(x$sta))
    det <- array(t(x$det))
    zif <- array(x$zif)
    out <- matrix(c(sta, det, zif), nrow(x$sta) + nrow(x$det) + nrow(x$zif), 4, byrow = TRUE)
    rownames(out) <- c(paste("sta", rownames(x$sta), sep = "_"),
            paste("det", rownames(x$det), sep = "_"),
            paste("zif", rownames(x$zif), sep = "_"))
    colnames(out) <- colnames(x$sta)
    return(out)
}

Try the detect package in your browser

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

detect documentation built on March 31, 2023, 10:02 p.m.