I have a list of 42 csv files with each with 2 columns. Timestamp in first column and some values in the other column. Timestamp column is same for each files. I added all the files into a list as follows-
files = list.files(pattern = "*.csv") %>%
lapply(read_csv) %>%
lapply(na.omit) # just to omit the blank entry from each files which located as the last entry of each files.
Now I want to combine all these files into one df where the first column is the timestamp and the 42 columns representing the values for each files. But unfortunately I am not getting my way around of it. Can you please help? Thank you.