Nothing
freq_data <-
function(R){
n = nrow(R)
J = ncol(R)
ss = 2^((J-1):0)
ind = R%*%ss+1
Y = matrix(0,n,2^J)
Y[cbind(1:n,ind)] = 1
return(Y)
}
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.