Nothing
check_vecs_equal <- function(vec1, vec2){
sum(vec1==vec2)
}
match_numeric <- function(x, table){
are.equal <- function(x, y) isTRUE(all.equal(x, y))
match.one <- function(x, table)
match(TRUE, vapply(table, are.equal, logical(1L), x = x))
vapply(x, match.one, integer(1L), table)
}
count_digits <- function(string) {
digits_only <- gsub("[^0-9]", "", string)
num_digits <- nchar(digits_only)
return(num_digits)
}
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.