-
Notifications
You must be signed in to change notification settings - Fork 670
Closed
Description
System information
- OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Ubuntu 18.04.4 LTS
- Modin version (
modin.__version__): 0.7.4 - Python version: 3.8.0
Describe the problem
When I try to concatenate several Modin Pandas DataFrames of equal number of rows column-wise, I get either KeyError: 'Passing list-likes to .loc or [] with any missing labels is no longer supported, see https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#deprecate-loc-reindex-listlike' (when ignore_index=False), or ValueError: Length mismatch: (with ignore_index=True).
Source code / logs
import numpy as np
import modin.pandas as modin_pd
modin_pd.concat([modin_pd.Series(np.ones(10)), modin_pd.Series(np.ones(10))], axis=1, ignore_index=True)
Metadata
Metadata
Assignees
Labels
bug 🦗Something isn't workingSomething isn't working