Hello-
I do not have much experience with python, although I am trying to write a script to do the following:
I have more than one CSV file, in this example I have three, each file has many rows, and two columns, they are in this format:
Column 1 is a time stamp, and Column 2 is data
nn:nn:nn.nnn,nn.n
03:13:25.394,20.4
03:20:03.649,18.3
03:21:34.628,19.9
What I want to be able to do is take two or more files of data all in the same format, and combine them into one file. where the file will be in this format: time,datafromfile1,datafromfile2,datafromfile3...etc
One of the problems i have been having is that each file does not have the same time intervals, so in that case, i imagine there would be some missing data points in each row (which is ok)
I'm not too sure where to start...
Any help is appreciated,
Thank you!