# Generated by 02-duckplyr_df-methods.R
#' @export
auto_copy.duckplyr_df <- function(x, y, copy = FALSE, ...) {
return(as_duckplyr_df(as.data.frame(y)))
# dplyr implementation
as.data.frame(y)
}
duckplyr_auto_copy <- function(x, y, ...) {
try_fetch(
{
x <- as_duckplyr_df(x)
y <- as_duckplyr_df(y)
},
error = function(e) {
testthat::skip(conditionMessage(e))
}
)
out <- auto_copy(x, y, ...)
out
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.