Nothing
two_axes <- function(x) {
d <- length(x)
d_half <- floor(d / 2)
return(sum(x[1:d_half]^2 * 10^6) + sum(x[(d_half+1):d]^2))
}
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.