-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCV_Daniela de los Santos_new.Rmd
More file actions
210 lines (146 loc) · 5.85 KB
/
CV_Daniela de los Santos_new.Rmd
File metadata and controls
210 lines (146 loc) · 5.85 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
---
title: "Daniela de los Santos Acuña"
author: Daniela de los Santos Acuña
date: "`r Sys.Date()`"
output:
pagedown::html_resume:
# set it to true for a self-contained HTML page but it'll take longer to render
self_contained: true
# uncomment this line to produce HTML and PDF in RStudio:
#knit: pagedown::chrome_print
---
```{r, include=FALSE}
knitr::opts_chunk$set(
results='asis',
echo = FALSE
)
library(tidyverse)
library(glue)
# Is the goal of this knit to build a document that is exported to PDF? If so
# set this to true to have links turned into footnotes at the end of the
# document
PDF_EXPORT <- FALSE
# A global (gasp) variable that holds all the links that were inserted for
# placement at the end
links <- c()
# ======================================================================
# Now we source two external scripts. One contains functions for building the
# text output and the other loads up our data from either googlesheets or csvs
# Functions for building sections from CSV data
source('parsing_functions.R')
# Load data for CV/Resume
source('gather_data.R')
```
```{css, echo=FALSE}
.pagedjs_page:not(:first-of-type) {
--sidebar-width: 3rem;
--sidebar-background-color: #ffffff;
--main-width: calc(var(--content-width) - var(--sidebar-width));
--decorator-horizontal-margin: 0.2in;
}
.aside {
padding-top: 0;
}
.aside > p:first-of-type {
margin-top: 0;
}
```
Aside
================================================================================
{width=80%}
Contact Info {#contact}
--------------------------------------------------------------------------------
- <i class="fa fa-envelope"></i> dlsantos.daniela@gmail.com
- <i class="fa fa-github"></i> [danidlsa](https://github.com/danidlsa)
- <i class="fa fa-phone"></i> +598 99257423
- <i class="fa fa-linkedin"></i> [danidlsa](https://www.linkedin.com/in/danidlsa/)
- <i class="fa fa-external-link"></i> [cvuy](https://exportcvuy.anii.org.uy/cv/?a0d91de8522f33cc1d4b5d35fd3be4d6)
- <i class="fa fa-google"></i> [Google Scholar](https://scholar.google.com.uy/citations?user=5WcqVgwAAAAJ&hl=es)
Languages {#languages}
--------------------------------------------------------------------------------
Spanish *(native)* \
English *(fluent)* \
Portuguese *(basic)* \
Catalan *(basic)* \
Skills {#skills}
--------------------------------------------------------------------------------
**Hard Skills**: Data analysis, Machine learning, Deep learning, Neural Networks, Natural Language Processing, Data Visualization, Statistical Modeling, Remote sensing, Spatial data analysis, Networks analysis, Cloud computing (AWS, Azure).
**Programming languages and software**: Python (scikit-learn, PyTorch, TensorFlow, keras, nltk, numpy, matplotlib, seaborn, pandas), R, SQL, H2o.ai, Stata, PowerBI, Tableau, Git, ArcGIS/QGIS, Shiny.
Main
================================================================================
Daniela de los Santos {#title}
--------------------------------------------------------------------------------
MSc in Data Science from the Barcelona School of Economics. BSc in Sociology from the Catholic University of Uruguay.
I have broad experience in data-driven social research and public policy analysis, machine and deep learning modeling, data processing and visualization, geospatial analysis, as well as scientific dissemination and teaching. My main areas of interest are the applications of data science tools in the design, implementation, and evaluation of public policy, aiming at the reduction of gender and social inequalities.
Education {data-icon=graduation-cap data-concise=true}
--------------------------------------------------------------------------------
```{r}
position_data %>% print_section('education')
```
Certifications and Courses {data-icon=id-card data-concise=true}
--------------------------------------------------------------------------------
```{r}
position_data %>% print_section_small('certs')
```
Professional Experience {data-icon=suitcase}
--------------------------------------------------------------------------------
```{r}
position_data %>% print_section('cons')
```
Research Experience {data-icon=laptop}
--------------------------------------------------------------------------------
```{r}
position_data %>% print_section('research')
```
Teaching Experience {data-icon=chalkboard-teacher}
--------------------------------------------------------------------------------
```{r}
position_data %>% print_section('teach')
```
Publications {data-icon=book}
--------------------------------------------------------------------------------
## Journal Articles {data-icon=file}
```{r}
publications %>% print_section('ref_articles')
```
## Book Chapters {data-icon=file}
```{r}
publications %>% print_section('book_chapter')
```
## Policy Briefs {data-icon=file}
```{r}
publications %>% print_section('policy')
```
## Other Articles {data-icon=file}
```{r}
publications %>% print_section('other_articles')
```
## Reports and Working Papers {data-icon=file}
```{r}
publications %>% print_section('reports')
```
Recent Data-related Projects {data-icon=line-chart}
--------------------------------------------------------------------------------
```{r}
projects %>% filter(in_resume=="VERDADERO") %>% print_section('project')
```
Achievements {data-icon=trophy}
--------------------------------------------------------------------------------
```{r}
position_data %>% print_section('ach')
```
\newpage
Dissemination Activities {data-icon=newspaper-o}
--------------------------------------------------------------------------------
## Presentations {data-icon=commenting-o}
```{r}
dissemination %>% print_section('presentation')
```
## Workshops {data-icon=users}
```{r}
dissemination %>% print_section('workshop')
```
## Press {data-icon=rss}
```{r}
dissemination %>% print_section('press')
```