Hi everyone! Here's the code that creating a parsing issue and I'm not sure how to interpret it.
library(tidyverse)
setwd("/Users/myusername/Dropbox/R Scripts/")
po_xtract <- read_csv("purchase-orders_20211020_141215.csv")
This is the result:
I'm not sure how to interpret the parsing issue. I viewed the row # 126 and compared it to the original file.
po_xtract %>%
slice(126) %>%
View()
All values in all columns are present.
I'm not sure what the issue is.
Thanks in advance!