Watts-College / cpp-527-spr-2022

https://watts-college.github.io/cpp-527-spr-2022/
0 stars 1 forks source link

Creating a CV #28

Open daliahamooda opened 2 years ago

daliahamooda commented 2 years ago

I keep getting this error

error in file (filename , "r", encoding=encoding): cannot open the connection calls ....withcalling handlers -> with visible->eval->source-> file

this is the code

`{r, include=FALSE} knitr::opts_chunk$set( results='asis', echo = FALSE ) library(tidyverse) library(glue)

Set this to true to have links turned into footnotes at the end of the document

PDF_EXPORT <- FALSE

Holds all the links that were inserted for placement at the end

links <- c() source('parsing_functions.R')

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('research_positions', 'industry_positions') ~ 'positions', 
  section %in% c('data_science_writings', 'by_me_press') ~ 'writings',
  TRUE ~ section
)

)