-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Labels
dataframegood first issueClearly described and easy to accomplish. Good for beginners to the project.Clearly described and easy to accomplish. Good for beginners to the project.
Description
ddf = dd.DataFrame(....)
g = ddf.set_index('name')
# works
g.groupby(g.index).apply(lambda x: x)
# fails (as the index name is not set/recognized)
g.groupby('name').apply(lambda x: x)
xref #956
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
dataframegood first issueClearly described and easy to accomplish. Good for beginners to the project.Clearly described and easy to accomplish. Good for beginners to the project.