forked from nstrayer/cv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.Rmd
163 lines (120 loc) · 3.9 KB
/
index.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
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
---
title: "Karla Fettich's CV"
author: Karla Fettich
date: "`r Sys.Date()`"
output:
pagedown::html_resume:
css: ['css/styles.css', 'resume']
# set it to true for a self-contained HTML page but it'll take longer to render
self_contained: true
---
```{r, include=FALSE}
knitr::opts_chunk$set(
results='asis',
echo = FALSE
)
library(glue)
library(tidyverse)
# Set this to true to have links turned into footnotes at the end of the document
PDF_EXPORT <- FALSE
# Holds all the links that are inserted for placement at the end
links <- c()
source('parsing_functions.R') # Functions for building sections from CSV data
source('common_variables.R') # Small variables for non-csv data such as intro text
# Load csv with position info
position_data <- read_csv('positions.csv')
```
```{r}
# When in export mode the little dots are unaligned, so fix that.
if(PDF_EXPORT){
cat("
<style>
:root{
--decorator-outer-offset-left: -6.5px;
}
</style>")
}
```
Aside
================================================================================
<!-- ![logo](communities.png){width=100%} -->
<i class="fa fa-envelope"></i> kfettich at gmail dot com
<br>
```{r}
# When in export mode the little dots are unaligned, so fix that.
if(PDF_EXPORT){
cat("View this CV online with links at _kfettich.github.io/cv/_")
} else {
cat("[<i class='fas fa-download'></i> Download a PDF of this CV](https://github.com/kfettich/cv/raw/master/karlafettich_cv.pdf)")
}
```
Skills {#mlai}
--------------------------------------------------------------------------------
ML/AI/Stats {#mlai}
--------------------------------------------------------------------------------
```{r}
build_skill_bars(ml_ai_skills)
```
Leadership {#leadership_skills}
--------------------------------------------------------------------------------
```{r}
build_skill_bars(leadership_skills)
```
Technical {#tools}
--------------------------------------------------------------------------------
```{r}
build_skill_bars(tech_tools)
```
Main
================================================================================
Karla Fettich, PhD {#title}
--------------------------------------------------------------------------------
```{r}
cat(sanitize_links(intro_text))
```
Education {data-icon=graduation-cap data-concise=true}
--------------------------------------------------------------------------------
```{r}
print_section(position_data, 'education')
```
Healthcare Analytics Experience {data-icon=suitcase}
--------------------------------------------------------------------------------
```{r}
print_section(position_data, 'healthcare_analytics')
```
::: aside
I have 14 years of experience conducting academic research, including clinical trials and studies using neuroimaging and psychophysiological data.
:::
Community Involvement & Leadership {data-icon=hands-helping}
--------------------------------------------------------------------------------
::: aside
I enjoy learning via hands-on projects that have a real and positive impact, and I seek to create opportunities to make this type of learning available to the wider community.
:::
```{r}
print_section(position_data, 'leadership')
```
```{r}
print_section(position_data, 'volunteer_work')
```
Papers & Publications {data-icon=book}
--------------------------------------------------------------------------------
```{r}
print_section(position_data, 'academic_articles')
```
Disclaimer {#disclaimer}
--------------------------------------------------------------------------------
Made with the R package [**pagedown**](https://github.com/rstudio/pagedown).
[CV Source Code](https://github.com/kfettich-forks/cv).
Last updated on `r Sys.Date()`.
```{r}
if(PDF_EXPORT){
cat("
Links {data-icon=link}
--------------------------------------------------------------------------------
<br>
")
walk2(links, 1:length(links), function(link, index){
print(glue('{index}. {link}'))
})
}
```