I have 3 different dataframes that I want to join, using label and window as keys.
DataFrame1
Window Label FeatA
123 1 h
123 2 f
DataFrame2
Window Label FeatB
123 1 d
123 2 s
DataFrame3
Window Label FeatC
123 1 d
123 2 c
Result
Window Label FeatA FeatB FeatC
123 1 h d d
123 2 f s c
I know how to join dataframes using pandas.concat
but don't know how to specify keys. Any help would be greatly appreciated.