Nothing
startcost <-
function(z){
# returns a treated x control cost matrix with zero costs
stopifnot(is.vector(z))
stopifnot(all((z==0)|(z==1)))
if (!is.null(names(z))) nm<-names(z)
else nm<-1:length(z)
o<-matrix(0,sum(z),sum(1-z))
rownames(o)<-nm[z==1]
colnames(o)<-nm[z==0]
o
}
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.