Skip to content

Modin Pandas concat with axis=1 does not work #1700

@pashkov-v

Description

@pashkov-v

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

Labels

bug 🦗Something isn't working

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions