-
Notifications
You must be signed in to change notification settings - Fork 670
Open
Labels
ExternalPull requests and issues from people who do not regularly contribute to modinPull requests and issues from people who do not regularly contribute to modinP2Minor bugs or low-priority feature requestsMinor bugs or low-priority feature requestsbug 🦗Something isn't workingSomething isn't workingpandas concordance 🐼Functionality that does not match pandasFunctionality that does not match pandas
Description
System information
- OS Platform and Distribution (e.g., Linux Ubuntu 16.04): macOS 10.15.7
- Modin version (
modin.__version__): 0.8.2 - Python version: 3.7
- Code we can use to reproduce: yes
Describe the problem
Using concat columns on 2 data frames with multi-index and no overlapping index names fails with ValueError: cannot join with no overlapping index names. Same operation works using pandas
Source code / logs
The following works with pandas but fails with modin
df1 = pd.DataFrame({('s1', 426, 6, -3): 210}, index=[["a"], ["b"], ["c"], ["d"]])
df2 = pd.DataFrame({('s2', 194, -3, -5): None}, index=[["x"], ["b"], ["c"], ["d"]])
df2.index.names = ['x', 'y', 'z', 'w']
merged = pd.concat([df1, df2], axis=1)
Metadata
Metadata
Assignees
Labels
ExternalPull requests and issues from people who do not regularly contribute to modinPull requests and issues from people who do not regularly contribute to modinP2Minor bugs or low-priority feature requestsMinor bugs or low-priority feature requestsbug 🦗Something isn't workingSomething isn't workingpandas concordance 🐼Functionality that does not match pandasFunctionality that does not match pandas