R/drop_metadata_cols.R

Defines functions drop_metadata_cols

drop_metadata_cols <- function(tbl) {

  to_be_dropped <- c('..resource', '..timestamp', '..page')
  dplyr::select(tbl, -to_be_dropped)

}

Try the quincunx package in your browser

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

quincunx documentation built on July 9, 2023, 7:32 p.m.