Nothing
makeWeightsMNPS <- function(ps, estimand, sampW = NULL, treatATT = NULL, treatATTps = NULL){
### ps should be a vector of the probability of having received the treatment that was received
if(estimand == "ATE"){
wts <- 1/ps
if(!is.null(sampW)) wts <- wts * sampW
return(wts)
}
if(estimand == "ATT"){
wts <- sampW
wts[treatATT] <- sampW[treatATT]
wts[!treatATT] <- treatATTps[!treatATT]/ps[!treatATT]
if(!is.null(sampW)) wts <- wts * sampW
return(wts)
}
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.