Nothing
# Convert binary vectors to integer vectors
decode4int = function(x, M, ...){
nx = length(M)
xint = integer(nx)
j = 1
for(i in 1:nx){
k = j+M[i]-1
xint[i] = bin2int(x[j:k])
j = k+1
}
return(xint)
}
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.