Nothing
expr_addition <- function(x, y) {
expr(!!x + !!y)
}
expr_subtraction <- function(x, y) {
expr(!!x - !!y)
}
expr_multiplication <- function(x, y) {
expr(!!x * !!y)
}
expr_division <- function(x, y) {
expr(!!x / !!y)
}
expr_and <- function(x, y) {
expr(!!x & !!y)
}
reduce_addition <- function(x) {
reduce(x, expr_addition)
}
reduce_subtraction <- function(x) {
reduce(x, expr_subtraction)
}
reduce_multiplication <- function(x) {
reduce(x, expr_multiplication)
}
reduce_and <- function(x) {
reduce(x, expr_and)
}
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.