Re: [R] Need to merge multiple data frames with time stamp

2013-10-18 Thread Kevin Schiesser
Merge has an option 'all', when set to 'TRUE' merge will return a data.frame of every row in both data.frames. You can also specify all.x, and all.y. I do not suggest taking this path. Rather, standardize time columns for all 15 data.frames with as.POSIXct()/as.POSIXlt() depending on the input tim

Re: [R] Need to merge multiple data frames with time stamp

2013-10-18 Thread jim holtman
You at least need to provide a subset of what the data looks likes. Since you are merging on 'time', if there are not the same times in each set, then you will have missing values. For example, in the merges that you are doing, have you looked at the size of the resulting object compared to the tw