Description Usage Author(s) Examples
View source: R/codiguera_ciuo.R
Función para cargar codiguera de CIUO.
1 |
Observatorio Productivo - Transforma Uruguay
1 2 3 4 5 6 7 8 9 10 11 | ## The function is currently defined as
function ()
{
path %>%
read_excel(skip = 1, col_names = TRUE) %>% rename_at(1:4,
~c("denominacion_ocupaciones", "cnuo_95", "descripcion",
"ciuo")) %>% transmute(ciuo, descripcion) %>% mutate(descripcion = case_when(ciuo ==
"1412" ~ "Gerentes de restaurantes", ciuo == "1431" ~
"Gerentes de centros deportivos, de esparcimiento y culturales",
TRUE ~ descripcion)) %>% unique
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.