Closed YarShev closed 5 months ago
[X] I have checked that this issue has not already been reported.
[X] I have confirmed this bug exists on the latest released version of Modin.
[X] I have confirmed this bug exists on the main branch of Modin. (In order to do this you can follow this guide.)
import modin.pandas as pd df = pd.DataFrame({'C': [1, 2, 3], 'B': [400, 500, 600]}) new_df = pd.DataFrame({'B': [4, 5, 6], 'A': [7, 8, 9]}) df.update(new_df) print(df) B C 0 4 1 1 5 2 2 6 3
Columns get ordered while in pandas not.
Should match pandas.
Modin version checks
[X] I have checked that this issue has not already been reported.
[X] I have confirmed this bug exists on the latest released version of Modin.
[X] I have confirmed this bug exists on the main branch of Modin. (In order to do this you can follow this guide.)
Reproducible Example
Issue Description
Columns get ordered while in pandas not.
Expected Behavior
Should match pandas.
Error Logs
Installed Versions