Learn R Programming

duckplyr (version 1.0.1)

explain.duckplyr_df: Explain details of a tbl

Description

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().

Usage

# S3 method for duckplyr_df
explain(x, ...)

Value

The input, invisibly.

Arguments

x

An object to explain

...

Other parameters possibly used by generic

See Also

Examples

Run this code
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