Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

csv #20

Open
zackarno opened this issue Sep 19, 2020 · 1 comment
Open

csv #20

zackarno opened this issue Sep 19, 2020 · 1 comment

Comments

@zackarno
Copy link

Hello,

I am not sure if something just went wrong during my installation, but i have noticed two issues withe create_CV_object function:

a.) inside the sample_data folder there is no csv called: entries.csv

b.) the paths to the sample_data csvs appear incorrect. They appear like this:
cv$entries_data <- readr::read_csv(paste0(data_location, "entries.csv"), skip = 1)
cv$skills <- readr::read_csv(paste0(data_location, "language_skills.csv"), skip = 1)
cv$text_blocks <- readr::read_csv(paste0(data_location, "text_blocks.csv"), skip = 1)
cv$contact_info <- readr::read_csv(paste0(data_location, "contact_info.csv"), skip = 1)

but I think they are missing a forward slash before the file name

@dibbles21
Copy link

dibbles21 commented Jun 1, 2021

Changing

cv$entries_data <- readr::read_csv(paste0(data_location, "entries.csv"), skip = 1) cv$skills <- readr::read_csv(paste0(data_location, "language_skills.csv"), skip = 1) cv$text_blocks <- readr::read_csv(paste0(data_location, "text_blocks.csv"), skip = 1) cv$contact_info <- readr::read_csv(paste0(data_location, "contact_info.csv"), skip = 1)

to

cv$entries_data <- readr::read_csv(paste0(data_location, "/positions.csv")) cv$skills <- readr::read_csv(paste0(data_location, "/language_skills.csv")) cv$text_blocks <- readr::read_csv(paste0(data_location, "/text_blocks.csv")) cv$contact_info <- readr::read_csv(paste0(data_location, "/contact_info.csv"), skip = 1)

worked for me

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants