| dob2age | R Documentation | 
Calculate age from DOB
dob2age(dob, age_on = lubridate::today(), fun = NULL, units = "years", ...)
| dob | The date or vector of dates representing date(s) of birth. | 
| age_on | (Date) The date on which age is to be calculated. Defaults to today. | 
| fun | (function) The function to be applied to the age, e.g. floor. Defaults to NULL. | 
| units | (character) The units to measure age in, e.g. "years".
Only used if  | 
| ... | Further optional arguments that will be passed to  | 
(duration) The age as a duration.
dob2age(lubridate::as_date("1990-01-01"))
dob2age(
  dob = c(
    lubridate::as_date("1990-01-01"),
    lubridate::as_date("1994-01-01"),
    lubridate::as_date("1998-01-01")
  ),
  age_on = lubridate::as_date("2002-12-31"),
  fun = floor
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.