-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.Rmd
More file actions
165 lines (118 loc) · 5.47 KB
/
index.Rmd
File metadata and controls
165 lines (118 loc) · 5.47 KB
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
---
title: "Willian's CV"
author: Willian Vieira
date: "`r Sys.Date()`"
output:
pagedown::html_resume:
css: ['css/styles.css', 'resume', 'https://cdn.rawgit.com/jpswalsh/academicons/master/css/academicons.min.css']
self_contained: true
includes:
after_body: ["assets/google-analytics.js"]
---
```{r, include=FALSE, cache = F}
knitr::opts_chunk$set(
results='asis',
echo = FALSE
)
library(glue)
library(tidyverse)
# Holds all the links that were inserted for placement at the end
PDF_EXPORT <- FALSE
source('R/parsing_functions.R')
# Load csv with position info
position_data <- readr::read_csv('data/positions.csv')
```
Aside
================================================================================
Contact {#contact}
--------------------------------------------------------------------------------
- <i class="fa fa-phone"></i> (263) 381-3636
- <i class="fa fa-envelope"></i> w.vieiraw@gmail.com
<!-- - <i class="fa fa-twitter"></i> [WillVieira90](https://twitter.com/willvieira90) -->
- <i class="fa fa-linkedin"></i> [Linkedin/WillVieira](https://linkedin.com/in/willvieira90)
- <i class="fa fa-github"></i> [GitHub/WillVieira](https://github.com/willvieira)
<!-- - <i class="fa fa-globe"></i> [willvieira.github.io/](https://willvieira.github.io/) -->
<!-- - <i class="ai ai-orcid"></i> [0000-0003-0283-4570](https://orcid.org/0000-0003-0283-4570) -->
- <i class="ai ai-google-scholar"></i> [Publications](https://scholar.google.com/citations?user=GyChlIoAAAAJ&hl=en)
<p style="margin-top: 0; margin-bottom: 1;font-size: 0.2rem;">
<br>
</p>
Skills
------------------------------------
<span style="font-weight:600;">Statistics & Modelling</span>: <br>
Bayesian inference · Hierarchical models · Probabilistic modeling · Causal inference · Machine Learning · Spatial statistics · Experimental design
<span style="font-weight:600;">Programming & Database</span>: <br>
R · Python · Stan · Julia · DuckDB · PostGIS · Bash · SQL
<span style="font-weight:600;">Data Engineering & Cloud</span>: <br>
ETL/ELT · Azure · AWS · Docker · Apache Arrow · Airflow & DBT · COG · GeoParquet · HPC
<span style="font-weight:600;">DevOps & Workflow</span>: <br>
Git · CI/CD · Unix · Unit testing · Make · Quarto · Jupyter
<p style="margin-top: 0; margin-bottom: 1;font-size: 0.2rem;">
<br>
</p>
Outreach
------------------------------------
· Developed and maintained the [QCBS R Workshop Series](https://r.qcbs.ca/), reaching nearly one thousand graduate students · Taught +250 students across biology, engineering, and graduate programs (programming, statistics, ecology) · [5 published](https://scholar.google.com/citations?user=GyChlIoAAAAJ&hl=en) papers & preprints with ~100 citations
· Translated client needs into technical analyses and delivered clear, actionable results
<p style="margin-top: 0; margin-bottom: 1;font-size: 0.2rem;">
<br>
</p>
Languages
------------------------------------
**Portuguese**<span style="font-size:11px;"> · Native</span><br>
**French**<span style="font-size:11px;"> · Full Professional</span><br>
**English**<span style="font-size:11px;"> · Full Professional</span><br>
Disclaimer {#disclaimer}
--------------------------------------------------------------------------------
CV source code hosted on [<i class='fa fa-github'></i> ](https://github.com/willvieira/cv)
Last updated: `r Sys.Date()`
[<i class='fas fa-download'></i> PDF download available](https://willvieira.github.io/cv/WillianVieira.pdf)
Main
================================================================================
<span style="font-weight:600">Willian Vieira</span> <span style="font-size: 15px;">PhD</span>{#title}
--------------------------------------------------------------------------------
<p style="text-align:justify;margin-top: 4px; margin-bottom: 0;">
Statistical Modeler and Data Engineer with a PhD in Ecology. I develop Bayesian hierarchical models of complex biological systems and build scalable data infrastructure to support them.
</p>
Data Science & Engineer Experience {data-icon=briefcase}
--------------------------------------------------------------------------------
```{r}
print_section(position_data, 'experience')
```
Education {data-icon=graduation-cap}
--------------------------------------------------------------------------------
```{r}
print_section(position_data, 'education')
```
<!--
Research Experience {data-icon=laptop}
-------------------------------------------------------------------------------- -->
```{r,eval=FALSE}
print_section(position_data, 'research_positions')
```
<!-- Teaching Experience {data-icon=chalkboard-teacher}
-------------------------------------------------------------------------------- -->
```{r,eval=FALSE}
print_section(position_data, 'teaching_positions')
```
<!-- Training {data-icon=certificate}
-------------------------------------------------------------------------------- -->
```{r,eval=FALSE}
print_section(position_data, 'training')
```
<!--
Publications {data-icon=book}
-------------------------------------------------------------------------------- -->
```{r,eval=FALSE, warning = FALSE,message = FALSE}
myORCID <- '0000-0003-0283-4570'
underlineName <- 'Vieira, W.'
# get edited publications from ORCID id
pubs <- get_publications(myORCID, underlineName)
print_publications(pubs)
```
<!--
Selected Talks and Posters {data-icon=chalkboard-teacher}
-------------------------------------------------------------------------------- -->
```{r,eval=FALSE}
print_section(position_data, 'talk_poster')
```