I have a list of many DataFrames. Each DataFrame is a set of various measurements corresponding to a timestamp. Since many measurements can correspond to the same moment in time, there are many duplicate index entries in the time indices of the DataFrames.
I want to merge this list of DataFrames and obviously to keep the duplicate indices. How can this be done? I have checked this question but the solutions are applicable to the case of merging only two DataFrames, not a list of many DataFrames. The concat
functionality apparently cannot handle duplicate indices.