Converts the given age variable (age_var
) to the unit 'years' from the current
units given in the age_var+U
variable or age_unit
argument and stores
in a new variable (new_var
).
Arguments
- dataset
Input dataset.
The column specified by the
age_var
argument is expected.- age_var
Age variable.
A numeric object is expected.
- age_unit
Age unit.
The
age_unit
argument is only expected when there is NOT a variableage_var+U
indataset
. This gives the unit of theage_var
variable and is used to convert AGE to 'years' so that grouping can occur.Default: NULL
Permitted Values: 'years', 'months', 'weeks', 'days', 'hours', 'minutes', 'seconds'
- new_var
New age variable to be created in years. The returned values are doubles and NOT integers. '
Details
This function is used to convert an age variable into the unit 'years' which can then be used to create age groups. The resulting column contains the equivalent years as a double. Note, underlying computations assume an equal number of days in each year (365.25).
See also
ADSL Functions that returns variable appended to dataset:
derive_var_dthcaus()
,
derive_var_extreme_dtm()
,
derive_var_extreme_dt()
,
derive_vars_aage()
,
derive_vars_period()
Examples
library(tibble)
# Derive age with age units specified
data <- tribble(
~AGE, ~AGEU,
27, "days",
24, "months",
3, "years",
4, "weeks",
1, "years"
)
derive_var_age_years(data, AGE, new_var = AAGE)
#> # A tibble: 5 x 3
#> AGE AGEU AAGE
#> <dbl> <chr> <dbl>
#> 1 27 days 0.0739
#> 2 24 months 2
#> 3 3 years 3
#> 4 4 weeks 0.0767
#> 5 1 years 1
# Derive age without age units variable specified
data <- tribble(
~AGE,
12,
24,
36,
48
)
derive_var_age_years(data, AGE, age_unit = "months", new_var = AAGE)
#> # A tibble: 4 x 2
#> AGE AAGE
#> <dbl> <dbl>
#> 1 12 1
#> 2 24 2
#> 3 36 3
#> 4 48 4