#' Inverted versions of in, is.null and is.na
#'
#' @noRd
#'
#' @examples
#' 1 %not_in% 1:10
#' not_null(NULL)
`%not_in%` <- Negate(`%in%`)
not_null <- Negate(is.null)
not_na <- Negate(is.na)
#' Removes the null from a vector
#'
#' @noRd
#'
#' @example
#' drop_nulls(list(1, NULL, 2))
drop_nulls <- function(x) {
x[!sapply(x, is.null)]
}
#' If x is `NULL`, return y, otherwise return x
#'
#' @param x,y Two elements to test, one potentially `NULL`
#'
#' @noRd
#'
#' @examples
#' NULL %||% 1
"%||%" <- function(x, y) {
if (is.null(x)) {
y
} else {
x
}
}
#' If x is `NA`, return y, otherwise return x
#'
#' @param x,y Two elements to test, one potentially `NA`
#'
#' @noRd
#'
#' @examples
#' NA %||% 1
"%|NA|%" <- function(x, y) {
if (is.na(x)) {
y
} else {
x
}
}
#' Typing reactiveValues is too long
#'
#' @inheritParams reactiveValues
#' @inheritParams reactiveValuesToList
#'
#' @noRd
rv <- shiny::reactiveValues
rvtl <- shiny::reactiveValuesToList
#' @import leaflet
#' @import tibble
#' @import dplyr
#' @import ggplot2
#' @import sf
#' @import tidyr
#' @import stringr
#' @import cowplot
#' @import councilR
#' @import fmsb
#' @import shinyjs
#' @import shinyWidgets
require(magrittr)
load('./data/eva_data_main.rda')
eva_vars <- eva_data_main %>%
dplyr::group_by(type, name, variable, interpret_high_value) %>%
dplyr::count() %>%
dplyr::ungroup()
labelFormat2 <- function(
prefix = "(", suffix = ")", between = " – ", digits = 5, big.mark = ",",
transform = identity
) {
formatNum <- function(x) {
format(
round(transform(x), digits), trim = FALSE, scientific = FALSE,
big.mark = big.mark
)
}
function(type, ...) {
switch(
type,
numeric = (function(cuts) {
paste0(prefix, formatNum(cuts), suffix)
})(...), # nolint
bin = (function(cuts) {w
n <- length(cuts)
paste0(prefix, formatNum(cuts[-n]), between, formatNum(cuts[-1]), suffix)
})(...), # nolint
quantile = (function(cuts, p) {
n <- length(cuts)
p <- paste0(round(p * 100), "%")
cuts <- paste0(formatNum(cuts[-n]), between, formatNum(cuts[-1]))
# mouse over the legend labels to see the values (quantiles)
paste0(
"<span title=\"", cuts, "\">", prefix, p[-n], between, p[-1], suffix,
"</span>"
)
})(...), # nolint
factor = (function(cuts) {
paste0(prefix, as.character(transform(cuts)), suffix)
})(...) # nolint
)
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.