-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Labels
bugSomething is brokenSomething is broken
Description
dd.concat fails if data frames do not have any columns
Minimal Complete Verifiable Example:
import pandas as pd
import dask.dataframe as dd
frames1 = [dd.from_pandas(pd.DataFrame(index=[1, 2, 3], data=dict(a=[1, 2, 3]))) for i
in
range(3)]
dd.concat(frames1).compute() # works
frames1[0].join(frames1[1]).compute() # works
frames2 = [dd.from_pandas(pd.DataFrame(index=[1, 2, 3])) for i in
range(3)]
frames2[0].join(frames2[1]).compute() # works
dd.concat(frames2).compute() # failsAnything else we need to know?:
Environment:
- Dask version: 2025.7.0
- Python version: 3.12
- Operating System: Mac
- Install method pip
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething is brokenSomething is broken