We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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
The text was updated successfully, but these errors were encountered:
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
Sorry, something went wrong.
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: