Nothing
`isRepetitive` <- function(x) {
n <- length(x)
retval <- FALSE
if (is.list(x)) {
if (n>2)
for (i in 1:(n-1)){
if (setequal(x[[n]], x[[i]]))
return(TRUE)
}
} else {
n <- length(x)
if (n>2)
for (i in 1:(n-1)){
if (x[n] == x[i])
return(TRUE)
}
}
FALSE
}
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.