Nothing
assert_identical_sets <- function(a, b) {
a <- sort(a)
b <- sort(b)
if (!identical(a, b)) {
stop(sprintf("Non-identical sets: %s != %s",
paste(sQuote(a), collapse = ", "),
paste(sQuote(b), collapse = ", ")))
}
}
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.