I am trying to combine two csv files. I loaded in CSV1 as weekly export and want to add it to the yearly combined much larger CSVC file.
CSV1 <- read.csv(path, check.names = FALSE, row.names = NULL)
CSVC <- read.csv(path, check.names = FALSE, row.names = NULL)
I then try to use rbind to combine the files
CSVF <- rbind(CSVC, CSV1) but an error comes back saying that number of columns and arguments do not match
When I use colnames(CSVC) to see listed columns it is showing NA column at the end but I am not sure if this is causing the issue or not.
Any help would be greatly appreciated.