R/ma_rhat.R

Defines functions ma_rhat

## File Name: ma_rhat.R
## File Version: 0.03

ma_rhat <- function(x, n_chains=3)
{
    nv <- ncol(x)
    rhat <- rep(NA,nv)
    NC <- n_chains
    NV <- nrow(x)
    NV0 <- NV - ( ( NV ) %% ( NC ) )
    for (vv in 1:nv){
        v1 <- x[,vv]
        mat <- matrix( v1[1:NV0], ncol=NC )
        rhat[vv] <- Rhat1(mat)
    }
    return(rhat)
}

Try the miceadds package in your browser

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

miceadds documentation built on Jan. 7, 2023, 1:09 a.m.