explain.duckplyr_df | R Documentation |
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()
.
## S3 method for class 'duckplyr_df'
explain(x, ...)
x |
An object to explain |
... |
Other parameters possibly used by generic |
The input, invisibly.
dplyr::explain()
library(duckplyr)
df <- duckdb_tibble(x = c(1, 2))
df <- mutate(df, y = 2)
explain(df)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.