Nothing
# Convert integer vectors to binary vectors
encode4int = function(x, M, ...){
nx = length(x)
xbin = c()
for(i in 1:nx)
xbin = c(xbin, int2bin(x[i], m=M[i]))
return(xbin)
}
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.