Nothing
skip_without_pyarrow <- function() {
skip_on_cran()
if (tolower(Sys.getenv("_R_CHECK_FORCE_SUGGESTS_")) != "false") return()
pyscript <- r"[
import pyarrow
import pyarrow.parquet as pq
]"
pytmp <- tempfile(fileext = ".py")
on.exit(unlink(pytmp), add = TRUE)
writeLines(pyscript, pytmp)
py <- if (Sys.which("python3") != "") "python3" else "python"
res <- tryCatch(
processx::run(py, pytmp, stderr = "2>&1"),
error = function(err) err
)
if (inherits(res, "error")) {
skip("missing pyarrow")
}
}
skip_without_polars <- function() {
skip_on_cran()
if (tolower(Sys.getenv("_R_CHECK_FORCE_SUGGESTS_")) != "false") return()
pyscript <- r"[
import polars
]"
pytmp <- tempfile(fileext = ".py")
on.exit(unlink(pytmp), add = TRUE)
writeLines(pyscript, pytmp)
py <- if (Sys.which("python3") != "") "python3" else "python"
res <- tryCatch(
processx::run(py, pytmp, stderr = "2>&1"),
error = function(err) err
)
if (inherits(res, "error")) {
skip("missing polars in Python")
}
}
skip_without <- function(pkgs) {
if (any(c("arrow", "duckdb") %in% pkgs)) skip_on_cran()
if (tolower(Sys.getenv("_R_CHECK_FORCE_SUGGESTS_")) != "false") return()
ok <- vapply(pkgs, requireNamespace, logical(1), quietly = TRUE)
if (any(!ok)) {
skip(paste0("missing ", paste(pkgs[!ok], collapse = ", ")))
}
}
test_df <- function(tibble = FALSE, factor = FALSE, missing = FALSE) {
df <- cbind(nam = rownames(mtcars), mtcars)
df$cyl <- as.integer(df$cyl)
df$large <- df$cyl >= 6
if (factor) {
df$fac <- as.factor(tolower(substr(df$nam, 1, 1)))
}
rownames(df) <- NULL
if (missing) {
for (i in seq_len(ncol(df))) {
if (i <= nrow(df)) {
df[i,i] <- NA
} else {
df[1,i] <- NA
}
}
}
if (tibble) {
class(df) <- c("tbl_df", "tbl", "data.frame")
} else {
class(df) <- c("tbl", "data.frame")
}
df
}
test_write <- function(d, schema = NULL, encoding = NULL) {
tmp <- tempfile(fileext = ".parquet")
on.exit(unlink(tmp), add = TRUE)
schema1 <- if (!is.null(schema)) parquet_schema(schema)
write_parquet(d, tmp, schema = schema1, encoding = encoding)
expect_snapshot({
schema
encoding
read_parquet_metadata(tmp)[["column_chunks"]][["encodings"]]
as.data.frame(read_parquet_pages(tmp))[, c("page_type", "encoding")]
as.data.frame(read_parquet(tmp))
})
}
redact_maxint64 <- function(x) {
gsub("922337203685477[0-9][0-9][0-9][0-9]", "922337203685477xxxx", x)
}
utcts <- function(x) {
as.POSIXct(as.POSIXlt(as.Date(x), tz = "UTC"))
}
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.