Nothing
# Gauss mutation
gaussmut = function(y, mutsdy, ...){
m = length(y)
if(missing(mutsdy)) mutsdy=1
v = sample(1:m, 1)
rval = rnorm(1, 0, mutsdy[v])
y[v] = y[v]+rval
return(list(mutant=y, mutgen=v))
}
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.