I got:
df1.shape: 51616 rows × 1 columns
df2.shape: 2322026 rows × 10 columns
After I do:
df2.update(df1)
I got error:
Shape of passed values is (5624095, 10), indices imply (2322036, 10)
What is wrong with my data?
I got:
df1.shape: 51616 rows × 1 columns
df2.shape: 2322026 rows × 10 columns
After I do:
df2.update(df1)
I got error:
Shape of passed values is (5624095, 10), indices imply (2322036, 10)
What is wrong with my data?