powered by
This is a method for the dplyr::explain() generic. This is a generic function which gives more details about an object than print(), and is more focused on human readable output than str().
dplyr::explain()
print()
str()
# S3 method for duckplyr_df explain(x, ...)
The input, invisibly.
An object to explain
Other parameters possibly used by generic
library(duckplyr) df <- duckdb_tibble(x = c(1, 2)) df <- mutate(df, y = 2) explain(df)
Run the code above in your browser using DataLab