R/user_defined_deident.R

Defines functions deident_from_func

UserDefinedDeident <- R6Class(
  "UserDefinedDeident", list(
    initialize = function(method){
      self$method = method
    }
  ),
  inherit = BaseDeident
)

deident_from_func <- function(method){
  UserDefinedDeident$new(method)
}

Try the deident package in your browser

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

deident documentation built on April 3, 2025, 6:14 p.m.