R/linking_haberman_remove_missings_vector.R

Defines functions linking_haberman_remove_missings_vector

## File Name: linking_haberman_remove_missings_vector.R
## File Version: 0.01

linking_haberman_remove_missings_vector <- function(x,w)
{
    ind <- ! is.na(x)
    x <- x[ind]
    w <- w[ind]
    res <- list(x=x, w=w)
    return(res)
}

Try the sirt package in your browser

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

sirt documentation built on Aug. 11, 2023, 5:07 p.m.