-
Notifications
You must be signed in to change notification settings - Fork 0
/
CV.Rmd
108 lines (90 loc) · 2.98 KB
/
CV.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
---
name: Aung Myo Htut
surname: Htut
docname: "Resume"
fontawesome: yes
address: Portland, Maine
phone: "(314) 441-9671"
email: dramhtut@gmail.com
linkedin: aungmyohtut21
date: "`r format(Sys.time(),'%d %B, %Y')`"
headcolor: 990000
aboutme: "Dedicated epidemiologist committed to addressing public health challenges and reducing health inequities through data-driven solutions. This resume itself is a testament to that approach, compiled using code and leveraging data science techniques."
output: function(...)
{source('price_entries.R');
vitae:::set_entry_formats(price_entries);
vitae::cv_document(..., template = "pricetemplate.tex")
}
always_allow_html: yes
editor_options:
chunk_output_type: console
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE, warning = FALSE, message = FALSE)
library(tidyverse)
library(vitae)
library(magrittr)
library(tibble)
library(glue)
library(lubridate)
library(rlang)
```
# Professional Summary
Epidemiologist with extensive experience in data analysis and public health program evaluation to address health inequities by using biostatistics and data science. Skilled in R programming and adept at creating interactive data visualization tools using R Shiny and Power BI, facilitating informed decision-making and policy development. Demonstrates strong capabilities in managing and evaluating healthcare programs across diverse settings, delivering actionable insights to enhance public health outcomes. Seeking to apply expertise in an inclusive academic or public service role.
# Skills
```{r skills,results='asis', width = 40000}
skills <- readxl::read_excel("data.xlsx", sheet = "skills")
skills_formatted <- skills %>%
mutate(skill = if_else(is.na(details)|details=="", glue("{skill}"), glue("{skill} ({details})"))) %>%
group_by(group) %>%
summarize(skills = glue_collapse(skill, sep = " $\\bullet$ "))
for (group in skills_formatted$group) {
cat(
glue("\\textbf{<<tools::toTitleCase(group)>>}:", .open = "<<", .close = ">>"),
filter(skills_formatted, group == !!group)$skills,
"\n\n\n"
)
}
```
# Experience
```{r experience}
experience <- readxl::read_excel("data.xlsx", sheet = "employment")
experience %>% detailed_entries(
with = with,
what = what,
why = why,
when = glue::glue("{startMonth} {startYear} ---- {endMonth} {endYear}",.na = ""),
where = where
)
```
# Education
```{r education}
education <- readxl::read_excel("data.xlsx", sheet = "education-details")
education %>%
detailed_entries(
with = with,
what = what,
when = when,
where = where
)
```
# Scholarship
```{r scholarship}
scholarship <- readxl::read_excel("data.xlsx", sheet = "scholarship")
scholarship %>%
detailed_entries(
what = what,
when = when,
with = with
)
```
# Professional Affilications
```{r}
affiliations <-readxl::read_excel("data.xlsx", sheet = "affiliations")
affiliations %>%
detailed_entries(
what = status,
with = org,
when = when
)
```