-
Notifications
You must be signed in to change notification settings - Fork 129
Open
Labels
bugSomething isn't workingSomething isn't working
Description
This code breaks. Can we be related to flattening of the model, but we still need to handle this properly.
df = (
dc
.read_dataset("analyzer.bmi")
.group_by(count=func.count(), partition_by="person.z")
.to_pandas()
)
Workaround:
df = (
dc
.read_dataset("analyzer.bmi")
.mutate(z=C("person.z"))
.group_by(count=func.count(), partition_by="z")
.to_pandas()
)
dmpetrov
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working