-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.Rmd
More file actions
217 lines (160 loc) 路 7.23 KB
/
Copy pathindex.Rmd
File metadata and controls
217 lines (160 loc) 路 7.23 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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
---
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", "assets/scale-to-fit.html"]
---
```{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 & Decision Analytics</span>: <br>
Regression 路 Bayesian inference 路 Hierarchical models 路 Predictive modelling 路 Model validation 路 Uncertainty 路 Anomaly investigation
<span style="font-weight:600;">Programming & Database</span>: <br>
Python 路 R 路 SQL 路 Stan 路 Julia 路 DuckDB 路 Bash
<span style="font-weight:600;">Data Engineering & Reporting</span>: <br>
ETL/ELT 路 Data modelling 路 Data cleaning 路 BI-ready reporting 路 APIs 路 Azure 路 AWS 路 Docker 路 Parquet 路 HPC
<span style="font-weight:600;">DevOps & Reproducibility</span>: <br>
Git 路 CI/CD 路 Unix 路 Unit testing 路 Make 路 Quarto 路 Jupyter 路 Automated validation
<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 programming, statistics, SQL, and reproducible workflows to 250+ students across biology, engineering, and graduate programs 路 Translated stakeholder needs into technical analyses, documented pipelines, and clear analytical outputs
<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}
--------------------------------------------------------------------------------
```{r footer, results='asis'}
# Resolve the application tag with precedence: env var > data/application_tag.txt > none
app_tag <- trimws(Sys.getenv('CV_APP_TAG', unset = ''))
if (!nzchar(app_tag)) {
tag_file <- 'data/application_tag.txt'
if (file.exists(tag_file)) {
lines <- readLines(tag_file, warn = FALSE)
lines <- trimws(lines)
lines <- lines[nzchar(lines) & !startsWith(lines, '#')]
if (length(lines)) app_tag <- lines[1]
}
}
base_pages <- 'https://willvieira.github.io/cv'
base_repo <- 'https://github.com/willvieira/cv'
if (nzchar(app_tag)) {
html_url <- paste0(base_pages, '/', app_tag, '/index.html')
pdf_url <- paste0(base_pages, '/', app_tag, '/WillianVieira.pdf')
source_url <- paste0(base_repo, '/tree/', app_tag)
} else {
html_url <- paste0(base_pages, '/index.html')
pdf_url <- paste0(base_pages, '/WillianVieira.pdf')
source_url <- base_repo
}
cat(sprintf(
paste0(
'<div class="cv-footer">',
'<a href="%s"><i class="fa fa-github"></i> Source</a> 路 ',
'<a href="%s"><i class="fa fa-globe"></i> HTML</a> 路 ',
'<a href="%s"><i class="fas fa-download"></i> PDF</a> ',
'Updated %s',
'</div>'
),
source_url, html_url, pdf_url, format(Sys.Date())
))
```
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;">
Data analyst and modelling specialist with a PhD in quantitative ecology. I build mathematical and statistical models using reproducible data workflows that turn complex data into validated, explainable outputs for operational decisions.
</p>
Data Science & Engineering 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}
--------------------------------------------------------------------------------
### Unifying individual and metapopulation scales with stochastic population models: the effect of climate and competition on tree range limits
In production. Preprint hosted on <a href="https://willvieira.github.io/ms_forest-suitable-probability/" target="_blank"><i class="fa fa-github"></i></a>
N/A
2026
<span style="text-decoration: underline;">Vieira, W.</span>, Gravel, D.
### Sensitivity of tree species demography to climate and competition across their range
Under review. Preprint hosted on <a href="https://willvieira.github.io/ms_forest-ipm-sensitivity/" target="_blank"><i class="fa fa-github"></i></a>
N/A
2026
<span style="text-decoration: underline;">Vieira, W.</span>, MacDonald, A., Gravel, D.
```{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')
```