# Generated by 02-duckplyr_df-methods.R
#' @export
collect.duckplyr_df <- function(x, ...) {
# Side effect: ALTREP materialization is triggered
nrow(x)
x
}
duckplyr_collect <- function(x, ...) {
try_fetch(
x <- as_duckplyr_df(x),
error = function(e) {
testthat::skip(conditionMessage(e))
}
)
out <- collect(x, ...)
class(out) <- setdiff(class(out), "duckplyr_df")
out
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.