I have multiple dataframes with the same column names. I'd like to merge them, but rename the columns based on the names of the dataframes.
Current State:
Dataframe1:
Date          Price
12/1/1990     10.00
12/2/1990     11.00
12/3/1990     12.00
Dataframe2:
Date          Price
12/1/1990     11.00
12/2/1990     12.00
12/3/1990     14.00
Desired State:
Date          DataFrame1Price   DataFrame2Price
12/1/1990     10.00             11.00
12/2/1990     11.00             12.00
12/3/1990     12.00             14.00
 
     
    