Create an OEWS Weight Panel
Usage
onet_weight_panel_oews(
oews,
year,
code = "occ_code",
employment = "tot_emp",
reference_taxonomy = "2018 SOC",
source_taxonomy = NULL,
crosswalk = NULL
)Examples
oews <- tibble::tibble(
occ_code = c("15-1252", "29-1141"),
tot_emp = c(100, 300)
)
onet_weight_panel_oews(oews, year = 2024)
#> # A tibble: 2 × 7
#> reference_soc_code year employment weight_share source source_taxonomy
#> <chr> <int> <dbl> <dbl> <chr> <chr>
#> 1 15-1252 2024 100 0.25 OEWS 2018 SOC
#> 2 29-1141 2024 300 0.75 OEWS 2018 SOC
#> # ℹ 1 more variable: reference_taxonomy <chr>
