Nothing
calculate_summed_field <-
function (f)
{
fsum1 <- f
fsum2 <- f
for (k in 1:nrow(f)) {
fsum1[k, ] <- cumsum(f[k, ])
}
for (k in 1:ncol(f)) {
fsum2[, k] <- cumsum(fsum1[, k])
}
return(fsum2)
}
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.