Как смержить df1 и df2
df1
status, id, one, two
yes, 1, 3, 4
maybe, 2, 8, 2
df2
id, one, two, three
1, 3, 4, 7
9, 5, 8, 1
чтобы получилось так:
result
status, id, one, two, three
yes, 1, 3, 4, 7
maybe, 2, 8, 2, None
None, 9, 5, 8, 1
-
Вопрос задан
-
67 просмотров