R/getCutpointList.R

Defines functions getCutpointList

getCutpointList <-
function(dataset, base.form, covs){
    cutpoints <- lapply(covs, function(cov)
        getCutpoint(dataset, base.form, cov)
                        )
    names(cutpoints) <- covs
    return(cutpoints)
}

Try the MatchingFrontier package in your browser

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

MatchingFrontier documentation built on May 2, 2019, 4:16 a.m.