Description Usage Arguments Details Author(s) Examples
View source: R/codiguera_cnbcu_ciius.R
Función para cargar codiguera de CNBCU - CIIU.
1 |
x |
Tabla de equivalencias entre códigos de actividad del BCU y Clasificación Industrial Internacional Uniforme Rev.3 y Rev.4.
Observatorio Productivo - Transforma Uruguay
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | ## The function is currently defined as
function (x)
{
ciiu%>%
mutate(ciiu4 = str_sub(ciiu, 1, 4))%>%
group_by(ciiu4)%>%
dplyr::summarize()%>%
left_join(ciiu4_ciiu3)%>%
left_join(cnbcu_subclase)%>%
select(-denominacion.cnbcu)%>%
group_by(ciiu4)%>%
dplyr::summarize(ciiu3 = first(ciiu3),
cnbcu = first(cnbcu))%>% # ciiu4 no se repite
filter(is.na(ciiu3) != TRUE)%>%
filter(is.na(cnbcu) != TRUE)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.