Nothing
library(SVAlignR)
## single byte
data(longreads)
raw <- longreads$connection
alfa <- Cipher(raw)
coded <- encode(alfa, raw)
makeWords(coded, 3)
countWords(coded, 3)
countWords(coded, 3, alfa)
IT <- intToUtf8(L <- c(38:44, 46:57, 59:62, 64:126)) ## omit hyphen, colon, and question
JT <- paste(strsplit(IT, "|")[[1]], collapse = "-")
beta <- Cipher(JT)
twob <- encode(beta, JT)
double <- c(twob, twob)
countWords(double, 3) # don't do this
countWords(double, 3, beta) # this is right
makeWords(double, 3) # don't do this
makeWords(double, 3, 2) # this is right
m <- lapply(1:8, function(J) countWords(coded, J, alfa))
plotWords(3, m)
M <- lapply(1:8, function(J) countWords(double, J, beta))
plotWords(2, M)
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.