Renaming Columns after concatenating two Series with same Column names
I have two series namely x and y. x: Index Timestamp 0 2022-11-16 13:00:00 1 2022-11-17 13:48:00 y: Index Timestamp 0 2022-11-16 19:13:00 1 2022-11-17 16:21:00 I combine these two series into a data frame as follows. z = pd.concat([x, y], axis=1) But in the dataframe both the column names appear as "Timestamp". I want… Read More Renaming Columns after concatenating two Series with same Column names