Publications by Pedro Henrique Brant

Assigning QUALIS Grades to PubMed Publications Using Fuzzy Matching

04.12.2024

Introduction This document details the process of merging and enriching data extracted from PubMed with QUALIS classification data, obtained from a PDF. The main goal is to assign QUALIS grades to journals listed in the PubMed dataset based on their ISSNs or, when no direct match is found, using fuzzy matching on journal titles. This report wil...

3800 sym R (11987 sym/15 pcs)

Cleaning and Tidying Data Extracted from a PDF: QUALIS Grades

04.12.2024

Introduction During my Master’s in Infectious Diseases and Tropical Medicine at the Federal University of Minas Gerais, I encountered a PDF document containing the QUALIS grades for numerous scientific publications. QUALIS is a classification system developed by CAPES (Coordenação de Aperfeiçoamento de Pessoal de Nível Superior) to evalua...

2537 sym R (12013 sym/10 pcs)

Assignment 17 Correction

31.10.2024

Introduction This section is going to be repeated from what was seen in the previous assignment, it pertains to reading the data and cleaning it initially. The outputs from the chunks will be suppressed. Refer to the previous assignment corrections if needed. ## this library is used by almost everyone that uses R and it introduces the notion of ...

4208 sym R (3232 sym/13 pcs) 4 img

Assignment 15 Correction

21.09.2024

Introduction This section is going to be repeated from what was seen in the previous assignment, it pertains to reading the data and cleaning it initially. ## this library is used by almost everyone that uses R and it introduces the notion of pipes (%>%) library(tidyverse) ## this is used to read the excel sheet that was provided library(readx...

4112 sym R (11510 sym/35 pcs) 1 img 2 tbl

Gráficos de monitoramento intervenção

19.09.2024

No dia de hoje, a professora Clara solicitou que fosse realizada a classificação das unidades da intervenção do projeto CHARMING de acordo com os seguintes parâmetros: Número de pacientes com consultas médicas no período dividido pelo número de pacientes incluídos. número de pacientes com exame de HbA1c no período dividido pelo nú...

2753 sym R (9693 sym/26 pcs) 6 img

Correction Assignment 14

12.09.2024

This is a markdown for the correction of assignment 14. As the original assignment was meant do be done in STATA, I’ll try to translate the commands to R to the best of my ability. I don’t currently have a STATA license and I’m also not too proficient with it, so I’m going to show you how things would be done, in a lot of detail, in R. ...

3006 sym R (8206 sym/20 pcs) 6 img 4 tbl

Assignment 14 Correction

12.09.2024

This is a markdown for the correction of assignment 14. As the original assignment was meant do be done in STATA, I’ll try to translate the commands to R to the best of my ability. I don’t currently have a STATA license and I’m also not too proficient with it, so I’m going to show you how things would be done, in a lot of detail, in R. ...

2858 sym R (7913 sym/19 pcs) 5 img 4 tbl

Extracting the ECG-age

30.01.2024

library(tidyverse) ## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ── ## ✔ dplyr 1.1.3 ✔ readr 2.1.4 ## ✔ forcats 1.0.0 ✔ stringr 1.5.0 ## ✔ ggplot2 3.4.4 ✔ tibble 3.2.1 ## ✔ lubridate 1.9.3 ✔ tidyr 1.3.0...

9 sym R (3404 sym/6 pcs)

Difference in grades by day of presentation

21.12.2023

Introduction During the 2024 cohort admissions process for the Master’s program in Infectious Diseases and Tropical Medicine at the Federal University of Minas Gerais (UFMG, Brazil), candidates whose projects were approved in the first phase were scheduled for the oral presentations into two groups. One group presented on December 4th, while...

3831 sym R (4719 sym/12 pcs) 2 img

Meta-Analysis in R

25.11.2023

We’re going to practice doing a meta-analysis in R. First, let’s load the necessary packages. ## checking if packages are installed, if they aren't, installing them ## loading them after if(!require(tidyverse)){ install.packages("tidyverse") } library(tidyverse) if(!require(meta)){ install.packages("meta") } library...

529 sym R (2526 sym/9 pcs) 2 img