Nothing
# Initialization function
initialize = function(initfunc, n, m, type, ...){
func = as.character(match.call()[2])
if(missing(type)) type=1
dotargs = list(...)
dotargs$n = n
dotargs$m = m
dotargs$type = type
initpop=do.call(func, dotargs)
return(initpop)
}
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.