Nothing
## Kopie in mlbench
bincombinations <- function(p) {
retval <- matrix(0, nrow=2^p, ncol=p)
for(n in 1:p){
retval[,n] <- rep(c(rep(0, (2^p/2^n)), rep(1, (2^p/2^n))),
length.out = 2^p)
}
retval
}
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.