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)
}
alexanderrobitzsch/sirt documentation built on April 23, 2024, 2:31 p.m.