Nothing
levenshtein.neighbors <-
function(xsource, targets){
results<-list()
distances<-levenshtein.distance(xsource, targets)
for (distance in min(distances):max(distances)){
results[distance]=list(names(which(distances==distance)))
}
return(results)
}
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.