Nothing
#' R6 class for the removal of variables from a pipeline
#'
#' @description
#' A `Deident` class dealing with the exclusion of variables.
#'
#' @export
Drop <- R6Class(
"Drop",
list(
transform = function(keys, ...){
},
mutate = function(data, ...){
remove_if_exists(data, ...)
}
),
inherit = BaseDeident
)
remove_if_exists <- function(frm, ...){
to_drop <- overlap(frm, ...)
select(frm, -all_of(to_drop))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.