# Count total values in field
#
# Returns the number of values in a vector (including NA's).
# @param x vector of numeric values.
# @keywords total
# @examples
# total(c(1,2,3,NA,NA))
total <- function(x) {
length(x)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.