I have two data frames. The first, A, contains the headings “Timestamp”, “Ticker”, “Price”. The second, B, contains “Timestamp”, “Ticker”, “ProfitMargin”.
How do I join A and B, such that I get:
C = [Timestamp, Ticker, Price, ProfitMargin] for only those Timestamp values that are shared between A and B, and without having duplicate headers?