Nothing
row_mean <- function(x, na.rm = FALSE, dims = 1L){
rowMeans(x, na.rm, dims)
}
row_sd <- function(x, na.rm=F) {
# Vectorised version of variance filter
sqrt(rowSums((x - rowMeans(x, na.rm=na.rm))^2, na.rm=na.rm) / (ncol(x) - 1))
}
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.