Quick background. I am extremely new to R studio. We had a colleague on our team build a bunch of process in R Studio then quite and I'm trying to pick up the pieces. I have zero R studio experience but have been in reporting for 10+ years. I have script and part of my script is just loading a CSV file. Here is the line, which I think is simple load comment. However sometimes I get a parsed with error. A couple of Questions. Is there a way to identify what is causing the parsed with error? Is it one specific data item? And will this error affect my data moving forward? Or is it just letting me know that some of the data is not in the same format that is expected (i.e there is a letter where their should be a number).
First_Time_Awarded <- read_csv("R:/Campus Operations-101200/Reporting/Right Now/Chamberlain/Awards/First Time Awarded.csv")
This is not true at all, so I'm not sure why you would confuse OP even further. I've provided information on how to continue with this issue.
read_csv comes from readr package. It also has problems function that will print all the problems with the dataset, so there is no need to manually look into the dataset after loading to find them.
Hi @jjjason10! Welcome, and I hope you'll keep asking questions
A few more resources that might help you out here:
The Data Import chapter of R for Data Science helps build the background you'll need to understand what functions in the readr package, such as read_csv(), are doing: 11 Data import | R for Data Science