I am having multiple dataframes of identical size and identical headers. They are each from a different date. I am looking for an elegant way to store these dataframes representing different timesteps and be able to index using the dates and columns. Later on, it must be easy to call a specific column from the dataframe representing date xx/xx/xxxx.
More info on the format: Dataframe 14/09/1984, headers: a b m n R err (each columns has 1342 lines) Dataframe 15/09/1984, headers: a b m n R err (each columns has 1342 lines) Dataframe 16/09/1984, headers: a b m n R err (each columns has 1342 lines) .... I also have a vector with the dates with the same length as the amount of dataframes.
In addition: a b m n are always identical. R and err are different in each dataframe.