R/suff.stat.R

suff.stat <-
function(ModelMatrix, Table)
{
    nr <- nrow(ModelMatrix)
    S <- rep(0,nr)  
    for( h in 1:nr)
    {
       S[h] <- (Table) %*% ModelMatrix[h,]  
    }
    return(S)
}

Try the gIPFrm package in your browser

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

gIPFrm documentation built on May 1, 2019, 9:16 p.m.