Nothing
model.matrix.ssdeR <- function (object, model = c("outcome", "treatment", "selection"), ...)
{
model <- match.arg(model)
if(model == "outcome"){
rval <- if (!is.null(object$x[[model]]))
object$x[[model]]
else model.matrix(object$terms[[model]], model.frame(object),
contrasts = object$contrasts[[model]])
}else{
rval <- if (!is.null(object$firststage$x[[model]]))
object$firststage$x[[model]]
else model.matrix(object$firststage$terms[[model]], model.frame(object$firststage),
contrasts = object$firststage$contrasts[[model]])
}
return(rval)
}
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.