Nothing
mult.memb<-function(formula = NULL){
if(!is(formula, "formula")){stop("formula not passed to mult.memb")}
fac<-attr(terms(formula), "term.labels")
Z<-model.matrix(as.formula(paste("~", fac[1], -1), env=attr(formula, ".Environment")))
if(length(fac)>1){
for(i in 2:length(fac)){
Z<-Z+model.matrix(as.formula(paste("~", fac[i], -1), env=attr(formula, ".Environment")))
}
}
if(any(apply(Z, 2, function(x){all(x==0)}))){
Z<-Z[,-which(apply(Z, 2, function(x){all(x==0)})),drop=FALSE]
}
return(Z)
}
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.