Nothing
binary.digit <- function(fnum,n) {
bin_vect <-rep(0, 1+n) # Para que lo cree tan largo como sea necesario: array(0, dim=1 + floor(log(fnum, 2)))
while (fnum >= 2) {
pow <- floor(log(fnum, 2))
bin_vect[1 + pow] <- 1
fnum <- fnum - 2^pow
}
bin_vect[1] <- fnum
return(bin_vect)
}
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.