
Last chance! 50% off unlimited learning
Sale ends in
Start capturing exclusions on a tracked dataframe.
capture_exclusions(.data, .capture = TRUE)
the .data dataframe with the exclusions flag set (or cleared if
.capture=FALSE
).
a tracked dataframe
Should we capture exclusions (things removed from the data
set). This is useful for debugging data issues but comes at a significant
cost. Defaults to the value of getOption("dtrackr.exclusions")
or
FALSE
.
library(dplyr)
library(dtrackr)
tmp = iris %>% track() %>% capture_exclusions()
tmp %>% filter(Species!="versicolor") %>% history()
Run the code above in your browser using DataLab