Skip to contents

Drops the user into a debug session in the context of a given data.frame, which allows for calculations and investigation of columns in a particular data.frame.

Usage

ft_dive(df)

Arguments

df

the data.frame to investigate

Examples

if (FALSE) { # \dontrun{
weird_df = data.frame(x = rnorm(200), id = sample(letters, 200, replace = TRUE))
weird_df$y = weird_df$x * 4
weird_df |>
  dplyr::filter(id %in% "a") |>
  ft_dive()
} # }