You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
combine_first returns weird results in case there exist unmatched columns between two timestamp dataframes. this issue probably relates to #24357 (not retaining dtypes)
Thanks. In DataFrame.combine_first, we have needs_i8_conversion on the incoming values to get the integer values out of the ndarray. We may need to re-box after doing the expressions.where.
Problem Description
combine_first
returns weird results in case there exist unmatched columns between two timestamp dataframes. this issue probably relates to #24357 (not retaining dtypes)Output of
x.combine_first(y)
Output of
x.reindex(columns=x.columns|y.columns).combine_first(y)
INSTALLED VERSIONS
commit : None
python : 3.7.4.final.0
python-bits : 64
OS : Linux
OS-release : 4.18.0-80.7.2.el8_0.x86_64
machine : x86_64
processor : x86_64
byteorder : little
LC_ALL : None
LANG : en_US.UTF-8
LOCALE : en_US.UTF-8
pandas : 0.25.1
numpy : 1.17.2
The text was updated successfully, but these errors were encountered: