You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If we have a MultiIndex, but the first partition is empty, which may happen when
the dataframe is small, `_compute_axis_labels_and_lengths` will return us a flattened
MultiIndex - i.e. an Index consisting of tuples. This is because the MultiIndex from
the remaining partitions is appended to an empty flat Index, which results in a
flattened index. To work around this, we need to convert this flattened Index back
into a MultiIndex.
The text was updated successfully, but these errors were encountered:
#4601 found the following problem:
The text was updated successfully, but these errors were encountered: