set_class <- function(x, class) {
class(x) <- class
x
}
set_names <- function(x, names) {
names(x) <- names
x
}
sys_time <- function() {
time <- Sys.time()
attr(time, "tzone") <- "UTC"
time
}
tibble <- function(...) {
data <- data.frame(..., stringsAsFactors = FALSE)
class(data) <- c("tbl_df", "tbl", "data.frame")
data
}
is_try_error <- function(x) inherits(x, "try-error")
# from https://recology.info/2018/10/limiting-dependencies/
remove_nulls <- function(x) Filter(Negate(is.null), x)
# from https://recology.info/2018/10/limiting-dependencies/
str_extract <- function(x, y) regmatches(x, regexpr(y, x))
str_extract_all <- function(x, y) regmatches(x, gregexpr(y, x))
# from https://recology.info/2018/10/limiting-dependencies/
`%||%` <- function(x, y) if (is.null(x) || length(x) == 0) y else x
rinteger <- function(n = 1) as.integer(stats::runif(n, -.max_integer, .max_integer))
last <- function(x) x[length(x)]
# useful for updating seed based on file name converted to int using
# digest::digest2int(string)
sum2intswrap <- function(x, y) {
sum <- as.double(x) + as.double(y)
is_na <- is.na(sum)
sum[!is_na & sum < -.max_integer] <-
sum[!is_na & sum < -.max_integer] %% .max_integer
sum[!is_na & sum > .max_integer] <-
sum[!is_na & sum > .max_integer] %% -.max_integer
as.integer(sum)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.