knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.path = "man/figures/README-", out.width = "100%" )
engate is a package which aims to help data manipulation of brazilian public data. It consists of two sets of functions - nomeia and traduz - the former matchs an index column with its description and the latter, a related index.
You can install the development version of engate from GitHub with:
# install.packages("devtools") devtools::install_github("BernardoCGdaSilva/engate")
This is an example of the nomeia set of functions:
library(engate) df1 <- data.frame(codigos_cbo = c("010105", "515220", "992115")) df2 <- nomeia_cbo(df1,"codigos_cbo") df2
And this is an example of the traduz set:
library(engate) df1 <- data.frame(codigos_ncm = c("01012100", "35052000", "84459030")) df2 <- traduz_ncm_cnae(df1, "codigos_ncm") df2
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.