R/explain-rd.R

#' @title 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()`.
#'
#' @inheritParams dplyr::explain
#'
#' @return The input, invisibly.
#' @examples
#' library(duckplyr)
#' df <- duckdb_tibble(x = c(1, 2))
#' df <- mutate(df, y = 2)
#' explain(df)
#' @seealso [dplyr::explain()]
#' @rdname explain.duckplyr_df
#' @name explain.duckplyr_df
NULL

Try the duckplyr package in your browser

Any scripts or data that you put into this service are public.

duckplyr documentation built on June 8, 2025, 10:53 a.m.