
obfucateDate adds a random number of days bounded by plus and minus max delta
Source:R/obfuscateDate.R
obfuscateDate.Rd
Get the base_date add a random number of days taken from a uniform distribution bounded by -max_delta and max_delta. Insure the resulting date is as least as large as the min_date.
Examples
library(nprcgenekeepr)
someDates <- rep(as.Date(c("2009-2-16", "2016-2-16"), format = "%Y-%m-%d"),
10)
minBirthDate <- rep(as.Date("2009-2-16", format = "%Y-%m-%d"), 20)
obfuscateDate(someDates, 30, minBirthDate)
#> [1] "2009-02-24" "2016-01-29" "2009-03-13" "2016-02-21" "2009-03-16"
#> [6] "2016-02-29" "2009-02-28" "2016-01-23" "2009-02-24" "2016-03-16"
#> [11] "2009-03-03" "2016-02-13" "2009-02-16" "2016-01-29" "2009-02-21"
#> [16] "2016-02-20" "2009-02-24" "2016-03-12" "2009-02-21" "2016-02-19"