Keeping track of the different educational coding schemes at LCBC can be tricky. This formula contains the two current types of coding schemas employed by LCBC.
edu_levels(levels = 4)
edu4_levels()
edu9_levels()
how many levels to return (either 4 or 9)
named numeric vector
Specialized returns
edu_levels - returns named numeric vector for levels specified
edu4_levels - returns named numeric vector for 4-levels scheme
edu9_levels - returns named numeric vector for 9-levels scheme
Other edu_functions:
edu_compile()
,
edu_compute()
,
edu_factorise()
,
edu_levels2name()
,
edu_reduce()
,
edu_to_years()
edu_levels(4)
#> Primary school (9 years)
#> 9
#> High school
#> 12
#> University/University college (< 4 years)
#> 16
#> University/University college (> 4 years)
#> 19
edu_levels(9)
#> Pre-school/No schooling
#> 0
#> Primary school (6 years)
#> 6
#> Secondary school (9 years)
#> 9
#> High school (12 years)
#> 12
#> High school diploma (13 years)
#> 13
#> High school addition (14 years)
#> 14
#> Lower level University/University college degree (16 years)
#> 16
#> Upper level University/University college (19 years)
#> 19
#> Ph.D. (21 years)
#> 21
edu4_levels()
#> Primary school (9 years)
#> 9
#> High school
#> 12
#> University/University college (< 4 years)
#> 16
#> University/University college (> 4 years)
#> 19
edu9_levels()
#> Pre-school/No schooling
#> 0
#> Primary school (6 years)
#> 6
#> Secondary school (9 years)
#> 9
#> High school (12 years)
#> 12
#> High school diploma (13 years)
#> 13
#> High school addition (14 years)
#> 14
#> Lower level University/University college degree (16 years)
#> 16
#> Upper level University/University college (19 years)
#> 19
#> Ph.D. (21 years)
#> 21