library(dplyr)
library(dtrackr)
# mutate and other functions are unitary operations that generally change
# the structure but not size of a dataframe. In dtrackr these are by ignored
# by default but we can change that so that their behaviour is obvious.
# relocate, this shows how the columns can be reordered
iris %>%
track() %>%
group_by(Species) %>%
relocate(
tidyselect::starts_with("Sepal"),
.after=Species,
.messages="{.cols}",
.headline="Order of columns from relocate:") %>%
history()
Run the code above in your browser using DataLab