Skip to content

check on 03.05 in notebooks_v1 #381

Open
@maxvolpi

Description

@maxvolpi

I think that in the paragraph on Explicit MultiIndex constructors che code:

pd.MultiIndex(levels=[['a', 'b'], [1, 2]],
labels=[[0, 0, 1, 1], [0, 1, 0, 1]])

should be replaced with:

pd.MultiIndex(levels=[['a', 'b'], [1, 2]],
codes=[[0, 0, 1, 1], [0, 1, 0, 1]])

Could you please check. It worked on my computer with codes, but I got the error message:

pd.MultiIndes.new() got an unexpected keywor argument for "labels"

Activity

Moataz-Elmesmary

Moataz-Elmesmary commented on Sep 13, 2023

@Moataz-Elmesmary

The pd.MultiIndex constructor better use the codes parameter instead of labels to specify the levels and labels for a MultiIndex object. and it should work as expected without any errors.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      check on 03.05 in notebooks_v1 · Issue #381 · jakevdp/PythonDataScienceHandbook