Nothing
sameclass <- function(x, y) {
if (is.numeric(x) && is.numeric(y)) {
TRUE
} else if (ischar(x) && ischar(y)) {
TRUE
} else {
isTRUE(all.equal(class(x), class(y)))
}
}
ischar <- function(x) {
is.character(x) || is.factor(x)
}
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.