I want to join two tables (timeseries) while keeping every left entry (and NOT adding ones from the right) and adding things from the right only when they exist left and right. Kind of a left inner join (which probably does not exist).
For example I wanna join A with B and want to get AB:
A=
1
2
3
4
B=
1 X
2 Y
2 Z
4 Z
5 ZZ
AB=
1 X
2 NaN
3 NaN
4 Z
2 and 3 are NaN because 2 exists multiple times and 3 does not exist on the right side
Thank you for the help