explain.duckplyr_df: Explain details of a tbl

View source: R/explain.R

explain.duckplyr_dfR Documentation

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 class 'duckplyr_df'
explain(x, ...)

Arguments

x

An object to explain

...

Other parameters possibly used by generic

Value

The input, invisibly.

See Also

dplyr::explain()

Examples

library(duckplyr)
df <- duckdb_tibble(x = c(1, 2))
df <- mutate(df, y = 2)
explain(df)

duckdblabs/duckplyr documentation built on March 5, 2025, 3:46 a.m.