From c7a8a3f3021297ada7ad1ffc73bc3fd64b988d0b Mon Sep 17 00:00:00 2001
From: Ally <133538574+acampbell7@users.noreply.github.com>
Date: Mon, 19 Feb 2024 21:23:00 -0700
Subject: [PATCH] Update index.Rmd
---
index.Rmd | 192 +++++++++++++++++-------------------------------------
1 file changed, 61 insertions(+), 131 deletions(-)
diff --git a/index.Rmd b/index.Rmd
index ced0b025..730a6bb4 100644
--- a/index.Rmd
+++ b/index.Rmd
@@ -1,22 +1,22 @@
---
-title: "Nick Strayer's CV"
-author: Nick Strayer
+title: "Allyon Campbell's Resume"
+author: Allyson Campbell
date: "`r Sys.Date()`"
output:
pagedown::html_resume:
- css: ['css/styles.css', 'resume']
+ css: ['css/custom_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)
+library(glue)
# Set this to true to have links turned into footnotes at the end of the document
PDF_EXPORT <- FALSE
@@ -26,21 +26,21 @@ links <- c()
source('parsing_functions.R')
-# Load csv with position info
-position_data <- read_csv('positions.csv')
-```
+# First let's get the data, filtering to only the items tagged as
+# Resume items
+position_data <- read_csv('positions.csv') %>%
+ filter(in_resume) %>%
+ mutate(
+ # Build some custom sections by collapsing others
+ section = case_when(
+ # section %in% c('education') ~ 'education'
+ section %in% c('research_positions', 'industry_positions') ~ 'positions',
+ section %in% c('data_science_writings') ~ 'writings',
+ TRUE ~ section
+ )
+ )
-```{r}
-# When in export mode the little dots are unaligned, so fix that.
-if(PDF_EXPORT){
- cat("
- ")
-}
```
@@ -50,55 +50,64 @@ Aside
{width=100%}
-```{r}
-# When in export mode the little dots are unaligned, so fix that.
-if(PDF_EXPORT){
- cat("View this CV online with links at _nickstrayer.me/cv_")
-} else {
- cat("[ Download a PDF of this CV](https://github.com/nstrayer/cv/raw/master/strayer_cv.pdf)")
-}
-```
-
Contact {#contact}
--------------------------------------------------------------------------------
-- nick.strayer@gmail.com
-- NicholasStrayer
-- github.com/nstrayer
-- [nickstrayer.me](http://nickstrayer.me/)
-- (734) 645-0110
+- allysoncampbell519@gmail.com
+
+- github.com/acampbell7
+
+- (805) 587-8065
-Language Skills {#skills}
+
+Coding Language Skills {#skills}
--------------------------------------------------------------------------------
+
```{r}
skills <- tribble(
~skill, ~level,
- "R", 5,
- "Javascript (d3.js)", 4.5,
- "Python", 4,
- "Bash", 3.5,
+ "Microsoft Office", 5,
+ "Tableau", 4,
+ "R", 4,
+ "SPSS", 4,
+ "Javascript (d3.js)", 3,
"SQL", 3,
- "C++", 3,
- "AWK", 3
)
-
build_skill_bars(skills)
```
+Language Skills {#skills}
+--------------------------------------------------------------------------------
+
+```{r}
+skills1 <- tribble(
+ ~skill, ~level,
+ "English", 5,
+ "Mandrain Chinese", 4,
+ "Spanish", 3,
+ "Vietnamese", 2
+)
+build_skill_bars(skills1)
+```
+
+More info {#more-info}
+--------------------------------------------------------------------------------
+
+See full CV at acampbell7.me/cv for more complete list of positions and publications.
Disclaimer {#disclaimer}
--------------------------------------------------------------------------------
-Made with the R package [**pagedown**](https://github.com/rstudio/pagedown).
+Made w/ [**pagedown**](https://github.com/rstudio/pagedown).
-The source code is available at [github.com/nstrayer/cv](https://github.com/nstrayer/cv).
+Source code: [github.com/nstrayer/cv](https://github.com/nstrayer/cv).
Last updated on `r Sys.Date()`.
@@ -108,15 +117,14 @@ Last updated on `r Sys.Date()`.
Main
================================================================================
-Nick Strayer {#title}
+Allyson Campbell {#title}
--------------------------------------------------------------------------------
-
```{r}
-intro_text <- "I have made [visualizations viewed by hundreds of thousands of people](https://www.nytimes.com/interactive/2016/08/26/us/college-student-migration.html), [sped up query times for 25 terabytes of data by an average of 4,800 times](https://livefreeordichotomize.com/2019/06/04/using_awk_and_r_to_parse_25tb/), and built [packages for R](https://github.com/nstrayer/shinysense) that let you [do magic](http://nickstrayer.me/dataDayTexas/).
+intro_text <- " I have played an instrumental part in investigating incidents, working with management on proactive plans, and recovering assets. With a commitment to solving for positive solutions in high stress situations, I have developed a strategy that has helped the company recovered over $50 million in assests, and lead meetings with Federal Government agencies for prevention and intelligence/data sharing.
+
+Currently searching for a data analysist position, with the focus in corporate secuirty, that allows me to build tools using visualization and machine learning to help people explore and understand the company risks."
-Currently searching for a data science position that allows me to build tools using visualization and machine learning to help people explore and understand their data.
-"
cat(sanitize_links(intro_text))
```
@@ -127,105 +135,27 @@ Education {data-icon=graduation-cap data-concise=true}
--------------------------------------------------------------------------------
```{r}
-print_section(position_data, 'education')
-```
-
-
-
-Research Experience {data-icon=laptop}
---------------------------------------------------------------------------------
-
-```{r}
-print_section(position_data, 'research_positions')
-```
-
-
-
-Industry Experience {data-icon=suitcase}
---------------------------------------------------------------------------------
-
-::: aside
-I have worked in a variety of roles ranging from journalist to software engineer to data scientist. I like collaborative environments where I can learn from my peers.
-:::
-
-```{r}
-print_section(position_data, 'industry_positions')
-```
-
-
-
-
-
-Teaching Experience {data-icon=chalkboard-teacher}
---------------------------------------------------------------------------------
-
-::: aside
-I am passionate about education. I believe that no topic is too complex if the teacher is empathetic and willing to think about new methods of approaching task.
-:::
-
-```{r}
-print_section(position_data, 'teaching_positions')
-```
+position_data %>% print_section('education_class')
-
-Selected Data Science Writing {data-icon=chart-line}
---------------------------------------------------------------------------------
-
-
-::: aside
-I regularly blog about data science and visualization on my blog [LiveFreeOrDichotomize.](https://livefreeordichotomize.com/)
-:::
-
-```{r}
-print_section(position_data, 'data_science_writings')
+# education
```
-Selected Press (About) {data-icon=newspaper}
+Selected Positions {data-icon=suitcase}
--------------------------------------------------------------------------------
```{r}
-print_section(position_data, 'about_me_press')
+position_data %>% print_section('positions')
```
-
-
-Selected Press (By) {data-icon=newspaper}
+Professional Certifications {data-icon=newspaper}
--------------------------------------------------------------------------------
-```{r}
-print_section(position_data, 'by_me_press')
-```
-
-
-
-
-Selected Publications, Posters, and Talks {data-icon=book}
---------------------------------------------------------------------------------
```{r}
-print_section(position_data, 'academic_articles')
+position_data %>% print_section('writings')
```
-```{r}
-if(PDF_EXPORT){
- cat("
-
-Links {data-icon=link}
---------------------------------------------------------------------------------
-
-
-
-
-")
-
- walk2(links, 1:length(links), function(link, index){
- print(glue('{index}. {link}'))
- })
-}
-```
-
-