Nothing
##
## a n d o r . R Logical AND, OR
##
and <- function(l, k) {
return((l & k) + 0)
}
or <- function(l, k) {
return((l | k) + 0)
}
# and <- function(...) {
# all(sapply(as.list(...), as.logical))
# }
#
# or <- function(...) {
# any(sapply(as.list(...), as.logical))
# }
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.