View source: R/transferencias.R
| get_tc_por_municipio | R Documentation |
Retrieves constitutional transfer data for municipalities within states.
get_tc_por_municipio(
p_estado = NULL,
p_municipio = NULL,
p_ano = NULL,
p_mes = NULL,
p_transferencia = NULL,
p_sn_detalhar = NULL,
use_cache = TRUE,
verbose = FALSE
)
get_tc_by_municipality(state_code = NULL, municipality = NULL,
year = NULL, month = NULL, transfer_type = NULL, detailed = NULL,
use_cache = TRUE, verbose = FALSE)
p_estado |
State code(s) from |
p_municipio |
Municipality code(s) from |
p_ano |
Year(s). Accepts a vector or colon-separated string. Optional. |
p_mes |
Month(s). Accepts a vector or colon-separated string. Optional. |
p_transferencia |
Transfer type code(s) from
|
p_sn_detalhar |
Character. Set to any value to include detailed breakdown. Optional. |
use_cache |
Logical. If |
verbose |
Logical. If |
state_code |
State code(s) from |
municipality |
Municipality code(s) from |
year |
Year(s). Accepts a vector or colon-separated string.
Optional. Maps to |
month |
Month(s) (1-12). Accepts a vector or colon-separated
string. Optional. Maps to |
transfer_type |
Transfer type code(s) from
|
detailed |
Character. Set to any value to include detail.
Optional. Maps to |
All codes are internal Treasury codes (not IBGE). Use the dictionary
functions to look them up: get_tc_estados() for state codes,
get_tc_municipios() for municipality codes, and
get_tc_transferencias() for transfer type codes.
Multi-value parameters accept either a colon-separated string
("1:2:3") or an R vector (c(1, 2, 3)).
get_tc_by_municipality() is an English alias.
A tibble with transfer data by municipality.
Other Transferencias:
get_tc_estados(),
get_tc_municipios(),
get_tc_por_estados(),
get_tc_por_estados_detalhe(),
get_tc_por_municipio_detalhe(),
get_tc_transferencias()
## Not run:
# Step 1: look up codes (Treasury codes, NOT IBGE)
estados <- get_tc_estados()
pe_code <- estados$codigo[estados$nome == "Pernambuco"]
municipios <- get_tc_municipios(p_uf = pe_code)
recife_code <- municipios$codigo[municipios$nome == "Recife"]
# Step 2: query (pass vector or string)
tc <- get_tc_por_municipio(
p_estado = pe_code,
p_municipio = recife_code,
p_ano = 2023
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.