├── .DS_Store ├── .env.sample ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── dados ├── .DS_Store ├── MER Sagres-2017.pdf ├── contratos_mutados_2020 │ ├── ContratosMutadosTramita_Julho2020.csv │ └── doc_43432_20_lista_de_mutacoes_contratuais.csv ├── contratos_rescindidos_2018 │ ├── contratos_mutacoes_tramita_08_11_2018_corrigido-original.csv │ └── contratos_tramita_tratado.csv └── mapa_paraiba_ibge │ ├── Municipios.dbf │ ├── Municipios.prj │ ├── Municipios.sbn │ ├── Municipios.sbx │ ├── Municipios.shp │ ├── Municipios.shp.xml │ └── Municipios.shx ├── docker-compose.yml ├── docs ├── .DS_Store ├── 06-Descritivo-Fornecedores.Rmd ├── 06-Descritivo-Fornecedores.html ├── 06-Descritivo-Fornecedores_files │ └── figure-html │ │ ├── unnamed-chunk-11-1.png │ │ ├── unnamed-chunk-12-1.png │ │ ├── unnamed-chunk-14-1.png │ │ ├── unnamed-chunk-17-1.png │ │ └── unnamed-chunk-27-1.png ├── 07-ModelagemContratosGerais.Rmd ├── 07-ModelagemContratosGerais.html ├── 1-distribuicao-valores-fornecidos.Rmd ├── 1-distribuicao-valores-fornecidos.html ├── 2-modelo-reg-log-contratos.Rmd ├── 3-analise-aditivos-obras.html ├── 3-modelo-reg-log-contratos-obras-old.html ├── 3-modelo-reg-log-contratos-obras.html ├── 4-Descritivo-Licitacoes.Rmd ├── 4-Descritivo-Licitacoes.html ├── 5-Contratos-Vigentes.Rmd ├── 5-Contratos-Vigentes.html ├── deliverables │ ├── 1-MER-sagres.pdf │ ├── 2-1-distribuicao-valores-fornecidos.Rmd │ ├── 2-2-modelo-reg-log-contratos.Rmd │ ├── 2-3-modelo-reg-log-contratos-obras.Rmd │ ├── 2-descricao-sagres.pdf │ ├── 3-tecnologias-monitor-cidadao.pdf │ ├── 4-diagrama-camadas-monitor-cidadao.png │ └── 5-info-gerais-bases-utilizadas.pdf └── docs.Rproj ├── feed-al ├── .DS_Store ├── DAO.R ├── Dockerfile └── scripts │ ├── .DS_Store │ ├── create │ ├── create_contrato.sql │ ├── create_contrato_mutado.sql │ ├── create_empenho.sql │ ├── create_estorno_pagamento.sql │ ├── create_licitacao.sql │ ├── create_municipio.sql │ ├── create_pagamento.sql │ ├── create_participante.sql │ ├── create_previsao.sql │ └── create_proposta.sql │ ├── drop │ └── drop_tables.sql │ └── import │ └── import_data.sql ├── feed-mc ├── DAO.R ├── Dockerfile └── scripts │ ├── create │ ├── create_experimento.sql │ ├── create_feature.sql │ ├── create_feature_set.sql │ ├── create_indice_part.sql │ ├── create_metrica.sql │ └── create_previsao_prod.sql │ ├── drop │ └── drop_tables.sql │ └── import │ ├── import_data_experimento.sql │ ├── import_data_feature.sql │ └── import_data_feature_set.sql ├── fetcher ├── Dockerfile ├── R │ ├── .DS_Store │ ├── cols_constants.R │ ├── sagres.R │ ├── setup │ │ └── constants.R │ └── utils.R ├── README.md ├── credenciais │ └── .gitkeep ├── data │ ├── .gitignore │ └── contratos_mutados.csv ├── fetcher.Rproj ├── scripts │ └── fetch_sagres_data.R └── tests │ ├── test-aditivos.R │ ├── test-codigo-elemento-despesa.R │ ├── test-codigo-funcao.R │ ├── test-codigo-municipio.R │ ├── test-codigo-subelemento.R │ ├── test-codigo-subfuncao.R │ ├── test-codigo-unidade-gestora.R │ ├── test-contratos.R │ ├── test-convenios.R │ ├── test-empenhos.R │ ├── test-estorno-pagamento.R │ ├── test-fornecedores.R │ ├── test-licitacao.R │ ├── test-pagamentos.R │ ├── test-participantes.R │ ├── test-propostas.R │ ├── test-regime-execucao.R │ ├── test-tipo-modalidade-licitacao.R │ └── test-tipo-objeto-licitacao.R ├── img └── data-pipeline.png ├── lib_dados ├── acesso_banco.R ├── get-dados.R ├── trata_gabarito_tramita.R └── utils-sagres.R ├── tipologias ├── Dockerfile ├── R │ ├── .DS_Store │ ├── AL_DB_DAO.R │ ├── MC_DB_DAO.R │ ├── process_contratos.R │ ├── process_gabarito_contratos.R │ ├── process_licitacoes.R │ ├── process_propostas.R │ ├── setup │ │ └── constants.R │ ├── tipologias.R │ └── utils.R ├── data │ ├── .gitignore │ ├── experimento │ │ └── .gitignore │ ├── feature_set │ │ └── .gitignore │ ├── features │ │ └── .gitignore │ ├── gabaritos │ │ └── .gitignore │ ├── indice_part │ │ └── .gitignore │ ├── input_features.txt │ ├── metricas │ │ └── .gitignore │ └── source_code │ │ └── .gitignore ├── lib_modelos │ └── modelagem_medidas_avaliacao.R ├── modelagem │ └── treinamento_exc.R ├── scripts │ ├── gera_experimento.R │ ├── gera_feature.R │ └── gera_feature_set.R ├── tipologias.Rproj ├── tipologias_arquivos │ ├── outputs-2020-07-29 │ │ └── TipologiasContratosVigentesPrevisoes.csv │ └── outputs-2020-08-12 │ │ ├── teste_predictions.csv │ │ ├── treino_exc.csv │ │ ├── treino_original.csv │ │ └── treino_up.csv └── tipologias_old │ ├── .DS_Store │ ├── gabaritos │ └── carrega_gabarito_contratos.R │ ├── sagres_aldb │ ├── .DS_Store │ ├── carrega_empenhos.R │ ├── carrega_info_contrato.R │ ├── carrega_info_fornecimento.R │ ├── carrega_info_licitacao.R │ ├── carrega_info_proposta.R │ ├── carrega_info_status_contrato.R │ ├── carrega_licitacoes.R │ ├── contratos_geral │ │ ├── carrega_info_fornecimento_contratos.R │ │ └── gera_lista_empresas_geral.R │ ├── load_fornecedores_pagamentos.R │ └── valida_info_fornecimento_credor.R │ └── tipologias.R └── transformador ├── .DS_Store ├── .Rbuildignore ├── DESCRIPTION ├── Dockerfile ├── NAMESPACE ├── R ├── .DS_Store ├── sagres.R ├── tradutor │ ├── README.md │ ├── interface.R │ ├── read_utils.R │ └── sagres.R └── utils.R ├── data └── .gitignore ├── man ├── dot-extract_cd_municipio.Rd ├── dot-generate_hash_id.Rd ├── dot-substrRight.Rd ├── generate_contrato_id.Rd ├── generate_empenho_id.Rd ├── generate_estorno_pagamento_id.Rd ├── generate_licitacao_id.Rd ├── generate_pagamento_id.Rd ├── generate_participante_id.Rd ├── generate_proposta_id.Rd ├── hello.Rd ├── process_contrato.Rd ├── process_contrato_mutado.Rd ├── process_empenho.Rd ├── process_estorno_pagamento.Rd ├── process_licitacao.Rd ├── process_municipio.Rd ├── process_pagamento.Rd ├── process_participante.Rd └── process_proposta.Rd ├── mcTransformador.Rproj ├── scripts └── transform_mc_data.R └── utils └── join_utils.R /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/.DS_Store -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/README.md -------------------------------------------------------------------------------- /dados/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/dados/.DS_Store -------------------------------------------------------------------------------- /dados/MER Sagres-2017.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/dados/MER Sagres-2017.pdf -------------------------------------------------------------------------------- /dados/contratos_mutados_2020/ContratosMutadosTramita_Julho2020.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/dados/contratos_mutados_2020/ContratosMutadosTramita_Julho2020.csv -------------------------------------------------------------------------------- /dados/contratos_mutados_2020/doc_43432_20_lista_de_mutacoes_contratuais.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/dados/contratos_mutados_2020/doc_43432_20_lista_de_mutacoes_contratuais.csv -------------------------------------------------------------------------------- /dados/contratos_rescindidos_2018/contratos_mutacoes_tramita_08_11_2018_corrigido-original.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/dados/contratos_rescindidos_2018/contratos_mutacoes_tramita_08_11_2018_corrigido-original.csv -------------------------------------------------------------------------------- /dados/contratos_rescindidos_2018/contratos_tramita_tratado.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/dados/contratos_rescindidos_2018/contratos_tramita_tratado.csv -------------------------------------------------------------------------------- /dados/mapa_paraiba_ibge/Municipios.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/dados/mapa_paraiba_ibge/Municipios.dbf -------------------------------------------------------------------------------- /dados/mapa_paraiba_ibge/Municipios.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/dados/mapa_paraiba_ibge/Municipios.prj -------------------------------------------------------------------------------- /dados/mapa_paraiba_ibge/Municipios.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/dados/mapa_paraiba_ibge/Municipios.sbn -------------------------------------------------------------------------------- /dados/mapa_paraiba_ibge/Municipios.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/dados/mapa_paraiba_ibge/Municipios.sbx -------------------------------------------------------------------------------- /dados/mapa_paraiba_ibge/Municipios.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/dados/mapa_paraiba_ibge/Municipios.shp -------------------------------------------------------------------------------- /dados/mapa_paraiba_ibge/Municipios.shp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/dados/mapa_paraiba_ibge/Municipios.shp.xml -------------------------------------------------------------------------------- /dados/mapa_paraiba_ibge/Municipios.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/dados/mapa_paraiba_ibge/Municipios.shx -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/docs/.DS_Store -------------------------------------------------------------------------------- /docs/06-Descritivo-Fornecedores.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/docs/06-Descritivo-Fornecedores.Rmd -------------------------------------------------------------------------------- /docs/06-Descritivo-Fornecedores.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/docs/06-Descritivo-Fornecedores.html -------------------------------------------------------------------------------- /docs/06-Descritivo-Fornecedores_files/figure-html/unnamed-chunk-11-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/docs/06-Descritivo-Fornecedores_files/figure-html/unnamed-chunk-11-1.png -------------------------------------------------------------------------------- /docs/06-Descritivo-Fornecedores_files/figure-html/unnamed-chunk-12-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/docs/06-Descritivo-Fornecedores_files/figure-html/unnamed-chunk-12-1.png -------------------------------------------------------------------------------- /docs/06-Descritivo-Fornecedores_files/figure-html/unnamed-chunk-14-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/docs/06-Descritivo-Fornecedores_files/figure-html/unnamed-chunk-14-1.png -------------------------------------------------------------------------------- /docs/06-Descritivo-Fornecedores_files/figure-html/unnamed-chunk-17-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/docs/06-Descritivo-Fornecedores_files/figure-html/unnamed-chunk-17-1.png -------------------------------------------------------------------------------- /docs/06-Descritivo-Fornecedores_files/figure-html/unnamed-chunk-27-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/docs/06-Descritivo-Fornecedores_files/figure-html/unnamed-chunk-27-1.png -------------------------------------------------------------------------------- /docs/07-ModelagemContratosGerais.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/docs/07-ModelagemContratosGerais.Rmd -------------------------------------------------------------------------------- /docs/07-ModelagemContratosGerais.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/docs/07-ModelagemContratosGerais.html -------------------------------------------------------------------------------- /docs/1-distribuicao-valores-fornecidos.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/docs/1-distribuicao-valores-fornecidos.Rmd -------------------------------------------------------------------------------- /docs/1-distribuicao-valores-fornecidos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/docs/1-distribuicao-valores-fornecidos.html -------------------------------------------------------------------------------- /docs/2-modelo-reg-log-contratos.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/docs/2-modelo-reg-log-contratos.Rmd -------------------------------------------------------------------------------- /docs/3-analise-aditivos-obras.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/docs/3-analise-aditivos-obras.html -------------------------------------------------------------------------------- /docs/3-modelo-reg-log-contratos-obras-old.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/docs/3-modelo-reg-log-contratos-obras-old.html -------------------------------------------------------------------------------- /docs/3-modelo-reg-log-contratos-obras.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/docs/3-modelo-reg-log-contratos-obras.html -------------------------------------------------------------------------------- /docs/4-Descritivo-Licitacoes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/docs/4-Descritivo-Licitacoes.Rmd -------------------------------------------------------------------------------- /docs/4-Descritivo-Licitacoes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/docs/4-Descritivo-Licitacoes.html -------------------------------------------------------------------------------- /docs/5-Contratos-Vigentes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/docs/5-Contratos-Vigentes.Rmd -------------------------------------------------------------------------------- /docs/5-Contratos-Vigentes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/docs/5-Contratos-Vigentes.html -------------------------------------------------------------------------------- /docs/deliverables/1-MER-sagres.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/docs/deliverables/1-MER-sagres.pdf -------------------------------------------------------------------------------- /docs/deliverables/2-1-distribuicao-valores-fornecidos.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/docs/deliverables/2-1-distribuicao-valores-fornecidos.Rmd -------------------------------------------------------------------------------- /docs/deliverables/2-2-modelo-reg-log-contratos.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/docs/deliverables/2-2-modelo-reg-log-contratos.Rmd -------------------------------------------------------------------------------- /docs/deliverables/2-3-modelo-reg-log-contratos-obras.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/docs/deliverables/2-3-modelo-reg-log-contratos-obras.Rmd -------------------------------------------------------------------------------- /docs/deliverables/2-descricao-sagres.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/docs/deliverables/2-descricao-sagres.pdf -------------------------------------------------------------------------------- /docs/deliverables/3-tecnologias-monitor-cidadao.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/docs/deliverables/3-tecnologias-monitor-cidadao.pdf -------------------------------------------------------------------------------- /docs/deliverables/4-diagrama-camadas-monitor-cidadao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/docs/deliverables/4-diagrama-camadas-monitor-cidadao.png -------------------------------------------------------------------------------- /docs/deliverables/5-info-gerais-bases-utilizadas.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/docs/deliverables/5-info-gerais-bases-utilizadas.pdf -------------------------------------------------------------------------------- /docs/docs.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/docs/docs.Rproj -------------------------------------------------------------------------------- /feed-al/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/feed-al/.DS_Store -------------------------------------------------------------------------------- /feed-al/DAO.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/feed-al/DAO.R -------------------------------------------------------------------------------- /feed-al/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/feed-al/Dockerfile -------------------------------------------------------------------------------- /feed-al/scripts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/feed-al/scripts/.DS_Store -------------------------------------------------------------------------------- /feed-al/scripts/create/create_contrato.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/feed-al/scripts/create/create_contrato.sql -------------------------------------------------------------------------------- /feed-al/scripts/create/create_contrato_mutado.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/feed-al/scripts/create/create_contrato_mutado.sql -------------------------------------------------------------------------------- /feed-al/scripts/create/create_empenho.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/feed-al/scripts/create/create_empenho.sql -------------------------------------------------------------------------------- /feed-al/scripts/create/create_estorno_pagamento.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/feed-al/scripts/create/create_estorno_pagamento.sql -------------------------------------------------------------------------------- /feed-al/scripts/create/create_licitacao.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/feed-al/scripts/create/create_licitacao.sql -------------------------------------------------------------------------------- /feed-al/scripts/create/create_municipio.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/feed-al/scripts/create/create_municipio.sql -------------------------------------------------------------------------------- /feed-al/scripts/create/create_pagamento.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/feed-al/scripts/create/create_pagamento.sql -------------------------------------------------------------------------------- /feed-al/scripts/create/create_participante.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/feed-al/scripts/create/create_participante.sql -------------------------------------------------------------------------------- /feed-al/scripts/create/create_previsao.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/feed-al/scripts/create/create_previsao.sql -------------------------------------------------------------------------------- /feed-al/scripts/create/create_proposta.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/feed-al/scripts/create/create_proposta.sql -------------------------------------------------------------------------------- /feed-al/scripts/drop/drop_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/feed-al/scripts/drop/drop_tables.sql -------------------------------------------------------------------------------- /feed-al/scripts/import/import_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/feed-al/scripts/import/import_data.sql -------------------------------------------------------------------------------- /feed-mc/DAO.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/feed-mc/DAO.R -------------------------------------------------------------------------------- /feed-mc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/feed-mc/Dockerfile -------------------------------------------------------------------------------- /feed-mc/scripts/create/create_experimento.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/feed-mc/scripts/create/create_experimento.sql -------------------------------------------------------------------------------- /feed-mc/scripts/create/create_feature.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/feed-mc/scripts/create/create_feature.sql -------------------------------------------------------------------------------- /feed-mc/scripts/create/create_feature_set.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/feed-mc/scripts/create/create_feature_set.sql -------------------------------------------------------------------------------- /feed-mc/scripts/create/create_indice_part.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/feed-mc/scripts/create/create_indice_part.sql -------------------------------------------------------------------------------- /feed-mc/scripts/create/create_metrica.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/feed-mc/scripts/create/create_metrica.sql -------------------------------------------------------------------------------- /feed-mc/scripts/create/create_previsao_prod.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/feed-mc/scripts/create/create_previsao_prod.sql -------------------------------------------------------------------------------- /feed-mc/scripts/drop/drop_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/feed-mc/scripts/drop/drop_tables.sql -------------------------------------------------------------------------------- /feed-mc/scripts/import/import_data_experimento.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/feed-mc/scripts/import/import_data_experimento.sql -------------------------------------------------------------------------------- /feed-mc/scripts/import/import_data_feature.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/feed-mc/scripts/import/import_data_feature.sql -------------------------------------------------------------------------------- /feed-mc/scripts/import/import_data_feature_set.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/feed-mc/scripts/import/import_data_feature_set.sql -------------------------------------------------------------------------------- /fetcher/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/fetcher/Dockerfile -------------------------------------------------------------------------------- /fetcher/R/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/fetcher/R/.DS_Store -------------------------------------------------------------------------------- /fetcher/R/cols_constants.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/fetcher/R/cols_constants.R -------------------------------------------------------------------------------- /fetcher/R/sagres.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/fetcher/R/sagres.R -------------------------------------------------------------------------------- /fetcher/R/setup/constants.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/fetcher/R/setup/constants.R -------------------------------------------------------------------------------- /fetcher/R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/fetcher/R/utils.R -------------------------------------------------------------------------------- /fetcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/fetcher/README.md -------------------------------------------------------------------------------- /fetcher/credenciais/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fetcher/data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/fetcher/data/.gitignore -------------------------------------------------------------------------------- /fetcher/data/contratos_mutados.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/fetcher/data/contratos_mutados.csv -------------------------------------------------------------------------------- /fetcher/fetcher.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/fetcher/fetcher.Rproj -------------------------------------------------------------------------------- /fetcher/scripts/fetch_sagres_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/fetcher/scripts/fetch_sagres_data.R -------------------------------------------------------------------------------- /fetcher/tests/test-aditivos.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/fetcher/tests/test-aditivos.R -------------------------------------------------------------------------------- /fetcher/tests/test-codigo-elemento-despesa.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/fetcher/tests/test-codigo-elemento-despesa.R -------------------------------------------------------------------------------- /fetcher/tests/test-codigo-funcao.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/fetcher/tests/test-codigo-funcao.R -------------------------------------------------------------------------------- /fetcher/tests/test-codigo-municipio.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/fetcher/tests/test-codigo-municipio.R -------------------------------------------------------------------------------- /fetcher/tests/test-codigo-subelemento.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/fetcher/tests/test-codigo-subelemento.R -------------------------------------------------------------------------------- /fetcher/tests/test-codigo-subfuncao.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/fetcher/tests/test-codigo-subfuncao.R -------------------------------------------------------------------------------- /fetcher/tests/test-codigo-unidade-gestora.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/fetcher/tests/test-codigo-unidade-gestora.R -------------------------------------------------------------------------------- /fetcher/tests/test-contratos.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/fetcher/tests/test-contratos.R -------------------------------------------------------------------------------- /fetcher/tests/test-convenios.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/fetcher/tests/test-convenios.R -------------------------------------------------------------------------------- /fetcher/tests/test-empenhos.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/fetcher/tests/test-empenhos.R -------------------------------------------------------------------------------- /fetcher/tests/test-estorno-pagamento.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/fetcher/tests/test-estorno-pagamento.R -------------------------------------------------------------------------------- /fetcher/tests/test-fornecedores.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/fetcher/tests/test-fornecedores.R -------------------------------------------------------------------------------- /fetcher/tests/test-licitacao.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/fetcher/tests/test-licitacao.R -------------------------------------------------------------------------------- /fetcher/tests/test-pagamentos.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/fetcher/tests/test-pagamentos.R -------------------------------------------------------------------------------- /fetcher/tests/test-participantes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/fetcher/tests/test-participantes.R -------------------------------------------------------------------------------- /fetcher/tests/test-propostas.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/fetcher/tests/test-propostas.R -------------------------------------------------------------------------------- /fetcher/tests/test-regime-execucao.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/fetcher/tests/test-regime-execucao.R -------------------------------------------------------------------------------- /fetcher/tests/test-tipo-modalidade-licitacao.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/fetcher/tests/test-tipo-modalidade-licitacao.R -------------------------------------------------------------------------------- /fetcher/tests/test-tipo-objeto-licitacao.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/fetcher/tests/test-tipo-objeto-licitacao.R -------------------------------------------------------------------------------- /img/data-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/img/data-pipeline.png -------------------------------------------------------------------------------- /lib_dados/acesso_banco.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/lib_dados/acesso_banco.R -------------------------------------------------------------------------------- /lib_dados/get-dados.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/lib_dados/get-dados.R -------------------------------------------------------------------------------- /lib_dados/trata_gabarito_tramita.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/lib_dados/trata_gabarito_tramita.R -------------------------------------------------------------------------------- /lib_dados/utils-sagres.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/lib_dados/utils-sagres.R -------------------------------------------------------------------------------- /tipologias/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/Dockerfile -------------------------------------------------------------------------------- /tipologias/R/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/R/.DS_Store -------------------------------------------------------------------------------- /tipologias/R/AL_DB_DAO.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/R/AL_DB_DAO.R -------------------------------------------------------------------------------- /tipologias/R/MC_DB_DAO.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/R/MC_DB_DAO.R -------------------------------------------------------------------------------- /tipologias/R/process_contratos.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/R/process_contratos.R -------------------------------------------------------------------------------- /tipologias/R/process_gabarito_contratos.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/R/process_gabarito_contratos.R -------------------------------------------------------------------------------- /tipologias/R/process_licitacoes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/R/process_licitacoes.R -------------------------------------------------------------------------------- /tipologias/R/process_propostas.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/R/process_propostas.R -------------------------------------------------------------------------------- /tipologias/R/setup/constants.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/R/setup/constants.R -------------------------------------------------------------------------------- /tipologias/R/tipologias.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/R/tipologias.R -------------------------------------------------------------------------------- /tipologias/R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/R/utils.R -------------------------------------------------------------------------------- /tipologias/data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/data/.gitignore -------------------------------------------------------------------------------- /tipologias/data/experimento/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/data/experimento/.gitignore -------------------------------------------------------------------------------- /tipologias/data/feature_set/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/data/feature_set/.gitignore -------------------------------------------------------------------------------- /tipologias/data/features/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/data/features/.gitignore -------------------------------------------------------------------------------- /tipologias/data/gabaritos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/data/gabaritos/.gitignore -------------------------------------------------------------------------------- /tipologias/data/indice_part/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/data/indice_part/.gitignore -------------------------------------------------------------------------------- /tipologias/data/input_features.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/data/input_features.txt -------------------------------------------------------------------------------- /tipologias/data/metricas/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/data/metricas/.gitignore -------------------------------------------------------------------------------- /tipologias/data/source_code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/data/source_code/.gitignore -------------------------------------------------------------------------------- /tipologias/lib_modelos/modelagem_medidas_avaliacao.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/lib_modelos/modelagem_medidas_avaliacao.R -------------------------------------------------------------------------------- /tipologias/modelagem/treinamento_exc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/modelagem/treinamento_exc.R -------------------------------------------------------------------------------- /tipologias/scripts/gera_experimento.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/scripts/gera_experimento.R -------------------------------------------------------------------------------- /tipologias/scripts/gera_feature.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/scripts/gera_feature.R -------------------------------------------------------------------------------- /tipologias/scripts/gera_feature_set.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/scripts/gera_feature_set.R -------------------------------------------------------------------------------- /tipologias/tipologias.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/tipologias.Rproj -------------------------------------------------------------------------------- /tipologias/tipologias_arquivos/outputs-2020-07-29/TipologiasContratosVigentesPrevisoes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/tipologias_arquivos/outputs-2020-07-29/TipologiasContratosVigentesPrevisoes.csv -------------------------------------------------------------------------------- /tipologias/tipologias_arquivos/outputs-2020-08-12/teste_predictions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/tipologias_arquivos/outputs-2020-08-12/teste_predictions.csv -------------------------------------------------------------------------------- /tipologias/tipologias_arquivos/outputs-2020-08-12/treino_exc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/tipologias_arquivos/outputs-2020-08-12/treino_exc.csv -------------------------------------------------------------------------------- /tipologias/tipologias_arquivos/outputs-2020-08-12/treino_original.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/tipologias_arquivos/outputs-2020-08-12/treino_original.csv -------------------------------------------------------------------------------- /tipologias/tipologias_arquivos/outputs-2020-08-12/treino_up.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/tipologias_arquivos/outputs-2020-08-12/treino_up.csv -------------------------------------------------------------------------------- /tipologias/tipologias_old/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/tipologias_old/.DS_Store -------------------------------------------------------------------------------- /tipologias/tipologias_old/gabaritos/carrega_gabarito_contratos.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/tipologias_old/gabaritos/carrega_gabarito_contratos.R -------------------------------------------------------------------------------- /tipologias/tipologias_old/sagres_aldb/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/tipologias_old/sagres_aldb/.DS_Store -------------------------------------------------------------------------------- /tipologias/tipologias_old/sagres_aldb/carrega_empenhos.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/tipologias_old/sagres_aldb/carrega_empenhos.R -------------------------------------------------------------------------------- /tipologias/tipologias_old/sagres_aldb/carrega_info_contrato.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/tipologias_old/sagres_aldb/carrega_info_contrato.R -------------------------------------------------------------------------------- /tipologias/tipologias_old/sagres_aldb/carrega_info_fornecimento.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/tipologias_old/sagres_aldb/carrega_info_fornecimento.R -------------------------------------------------------------------------------- /tipologias/tipologias_old/sagres_aldb/carrega_info_licitacao.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/tipologias_old/sagres_aldb/carrega_info_licitacao.R -------------------------------------------------------------------------------- /tipologias/tipologias_old/sagres_aldb/carrega_info_proposta.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/tipologias_old/sagres_aldb/carrega_info_proposta.R -------------------------------------------------------------------------------- /tipologias/tipologias_old/sagres_aldb/carrega_info_status_contrato.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/tipologias_old/sagres_aldb/carrega_info_status_contrato.R -------------------------------------------------------------------------------- /tipologias/tipologias_old/sagres_aldb/carrega_licitacoes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/tipologias_old/sagres_aldb/carrega_licitacoes.R -------------------------------------------------------------------------------- /tipologias/tipologias_old/sagres_aldb/contratos_geral/carrega_info_fornecimento_contratos.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/tipologias_old/sagres_aldb/contratos_geral/carrega_info_fornecimento_contratos.R -------------------------------------------------------------------------------- /tipologias/tipologias_old/sagres_aldb/contratos_geral/gera_lista_empresas_geral.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/tipologias_old/sagres_aldb/contratos_geral/gera_lista_empresas_geral.R -------------------------------------------------------------------------------- /tipologias/tipologias_old/sagres_aldb/load_fornecedores_pagamentos.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/tipologias_old/sagres_aldb/load_fornecedores_pagamentos.R -------------------------------------------------------------------------------- /tipologias/tipologias_old/sagres_aldb/valida_info_fornecimento_credor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/tipologias_old/sagres_aldb/valida_info_fornecimento_credor.R -------------------------------------------------------------------------------- /tipologias/tipologias_old/tipologias.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/tipologias/tipologias_old/tipologias.R -------------------------------------------------------------------------------- /transformador/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/transformador/.DS_Store -------------------------------------------------------------------------------- /transformador/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/transformador/.Rbuildignore -------------------------------------------------------------------------------- /transformador/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/transformador/DESCRIPTION -------------------------------------------------------------------------------- /transformador/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/transformador/Dockerfile -------------------------------------------------------------------------------- /transformador/NAMESPACE: -------------------------------------------------------------------------------- 1 | exportPattern("^[[:alpha:]]+") 2 | -------------------------------------------------------------------------------- /transformador/R/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/transformador/R/.DS_Store -------------------------------------------------------------------------------- /transformador/R/sagres.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/transformador/R/sagres.R -------------------------------------------------------------------------------- /transformador/R/tradutor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/transformador/R/tradutor/README.md -------------------------------------------------------------------------------- /transformador/R/tradutor/interface.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/transformador/R/tradutor/interface.R -------------------------------------------------------------------------------- /transformador/R/tradutor/read_utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/transformador/R/tradutor/read_utils.R -------------------------------------------------------------------------------- /transformador/R/tradutor/sagres.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/transformador/R/tradutor/sagres.R -------------------------------------------------------------------------------- /transformador/R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/transformador/R/utils.R -------------------------------------------------------------------------------- /transformador/data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/transformador/data/.gitignore -------------------------------------------------------------------------------- /transformador/man/dot-extract_cd_municipio.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/transformador/man/dot-extract_cd_municipio.Rd -------------------------------------------------------------------------------- /transformador/man/dot-generate_hash_id.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/transformador/man/dot-generate_hash_id.Rd -------------------------------------------------------------------------------- /transformador/man/dot-substrRight.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/transformador/man/dot-substrRight.Rd -------------------------------------------------------------------------------- /transformador/man/generate_contrato_id.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/transformador/man/generate_contrato_id.Rd -------------------------------------------------------------------------------- /transformador/man/generate_empenho_id.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/transformador/man/generate_empenho_id.Rd -------------------------------------------------------------------------------- /transformador/man/generate_estorno_pagamento_id.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/transformador/man/generate_estorno_pagamento_id.Rd -------------------------------------------------------------------------------- /transformador/man/generate_licitacao_id.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/transformador/man/generate_licitacao_id.Rd -------------------------------------------------------------------------------- /transformador/man/generate_pagamento_id.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/transformador/man/generate_pagamento_id.Rd -------------------------------------------------------------------------------- /transformador/man/generate_participante_id.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/transformador/man/generate_participante_id.Rd -------------------------------------------------------------------------------- /transformador/man/generate_proposta_id.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/transformador/man/generate_proposta_id.Rd -------------------------------------------------------------------------------- /transformador/man/hello.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/transformador/man/hello.Rd -------------------------------------------------------------------------------- /transformador/man/process_contrato.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/transformador/man/process_contrato.Rd -------------------------------------------------------------------------------- /transformador/man/process_contrato_mutado.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/transformador/man/process_contrato_mutado.Rd -------------------------------------------------------------------------------- /transformador/man/process_empenho.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/transformador/man/process_empenho.Rd -------------------------------------------------------------------------------- /transformador/man/process_estorno_pagamento.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/transformador/man/process_estorno_pagamento.Rd -------------------------------------------------------------------------------- /transformador/man/process_licitacao.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/transformador/man/process_licitacao.Rd -------------------------------------------------------------------------------- /transformador/man/process_municipio.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/transformador/man/process_municipio.Rd -------------------------------------------------------------------------------- /transformador/man/process_pagamento.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/transformador/man/process_pagamento.Rd -------------------------------------------------------------------------------- /transformador/man/process_participante.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/transformador/man/process_participante.Rd -------------------------------------------------------------------------------- /transformador/man/process_proposta.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/transformador/man/process_proposta.Rd -------------------------------------------------------------------------------- /transformador/mcTransformador.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/transformador/mcTransformador.Rproj -------------------------------------------------------------------------------- /transformador/scripts/transform_mc_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/transformador/scripts/transform_mc_data.R -------------------------------------------------------------------------------- /transformador/utils/join_utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analytics-ufcg/monitor-cidadao-dados/HEAD/transformador/utils/join_utils.R --------------------------------------------------------------------------------