This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| title: "Transição na geração de energia elétrica" | |
| subtitle: "Números e geografia da opção brasileira pela energia renovável" | |
| output: | |
| html_document: | |
| code_folding: hide | |
| date: "2025-08-15" | |
| --- | |
| ```{r setup, include=TRUE} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| title: "storytelling_sazonalidade_respiratoria" | |
| author: "Fernando Almeida Barbalho" | |
| date: "2026-04-24" | |
| output: html_document | |
| --- | |
| ```{r setup, include=FALSE} | |
| knitr::opts_chunk$set(echo = FALSE, warning = FALSE, message = FALSE) | |
| library(tidyverse) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| knitr::opts_chunk$set(echo = FALSE, warning = FALSE, message = FALSE) | |
| library(tidyverse) | |
| library(colorspace) | |
| #Fonte dos dados: | |
| #https://www.fao.org/faostat/en/#data | |
| dados_fao_producao_alimentos_qty <- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ```{r setup, include=FALSE} | |
| knitr::opts_chunk$set(echo = FALSE, warning = FALSE, message = FALSE) | |
| library(tidyverse) | |
| library(colorspace) | |
| fauna_uc_26nov2025_trabalho <- readRDS("~/github/30DayChartChallenge/fauna_uc_26nov2025_trabalho.rds") | |
| categorias_validas<- c("Menos Preocupante (LC)", "Quase Ameaçada (NT)", "Vulnerável (VU)","Em Perigo (EN)", "Criticamente em Perigo (CR)", "Regionalmente Extinta (RE)" ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ```{r setup, include=FALSE} | |
| knitr::opts_chunk$set(echo = FALSE, warning = FALSE, message = FALSE) | |
| library(tidyverse) | |
| brazil_full <- readRDS("/cloud/project/brazil_full.rds") | |
| eu_countries_2021 <- readRDS("/cloud/project/eu_countries_2021.rds") | |
| mundo_bio_trade <- readRDS("/cloud/project/mundo_bio_trade.rds") | |
| continente_bio_trade <- readRDS("/cloud/project/continente_bio_trade.rds") | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(tidyverse) | |
| library(readxl) | |
| endereco_base<- "https://anfavea.com.br/docs/siteautoveiculos" | |
| nomme_sheet<- "III. Licenciamento Combustível" | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| title: "Gráfico da cotação do dolar" | |
| author: "Fernando Almeida Barbalho" | |
| date: "2026-01-27" | |
| output: html_document | |
| --- | |
| ```{r setup, include=FALSE} | |
| knitr::opts_chunk$set(echo = FALSE, warning = FALSE, message = FALSE) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(microdatasus) | |
| library(tidyverse) | |
| estados<- c("AC","AL","AM", "AP", "BA","CE","DF","ES","GO","MA","MT","MS","MG","PA","PB", "PR","PE","PI","RJ","RS","RN","RO","RR","SC","SP","SE","TO") | |
| download.file("ftp://ftp.datasus.gov.br/dissemin/publicos/SIHSUS/200801_/Doc/IT_SIHSUS_1603.pdf", destfile = "documentacao.pdf", mode= "wb", method = "libcurl" ) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #View que gera o cálculo do total de despesas pagas para todas as funçoes de governo de todos os municípios | |
| CREATE OR REPLACE VIEW `nice-diorama-306223.objetos_apoio.vw_total_municipios_despesas` AS | |
| SELECT id_municipio, | |
| sum(valor) total_despesa | |
| FROM `basedosdados.br_me_siconfi.municipio_despesas_funcao` despesa | |
| where ano = 2023 and | |
| estagio_bd = "Despesas Pagas" and | |
| (id_conta_bd is null or id_conta_bd = "3.00.000") #Despesa intraorçamentárias ou despesas exceto intraorçamentárias | |
| group by id_municipio; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Os dados estão presentes no repositório big query da base dos dados | |
| SELECT id_municipio, | |
| count(*) as quantidade_nivel_superior, | |
| ( select count(*) | |
| from `basedosdados.br_me_rais.microdados_vinculos` vinc_sub | |
| where vinc_sub.id_municipio = vinc.id_municipio and | |
| ano = 2023 and | |
| vinculo_ativo_3112 ="1" and | |
| natureza_juridica = "1244") as total_servidores_municipio, #1244= município |
NewerOlder