Nothing
WorkingResp <-
function(y, Px, X, beta, intercept=0){
pred <- X%*%beta+intercept
temp <- pred+(y-Px)/(Px*(1-Px))
temp[which(Px==1)]=pred[which(Px==1)]
temp[which(Px==0)]=pred[which(Px==0)]
return(unlist(temp))
}
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.