R/WLErel_exclude_missings.R

Defines functions WLErel_exclude_missings

## File Name: WLErel_exclude_missings.R
## File Version: 0.02

WLErel_exclude_missings <- function(theta, error, w)
{
    ind <- which( ! is.na(theta) )
    theta <- theta[ind]
    error <- error[ind]
    w <- w[ind]
    #--- OUTPUT
    res <- list( theta=theta, error=error, w=w)
    return(res)
}

Try the TAM package in your browser

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

TAM documentation built on Aug. 29, 2022, 1:05 a.m.