Skip to content

Commit

Permalink
Add dataset.dataset to cuDF groupby
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Dec 8, 2019
1 parent 6ad71e6 commit fd21ebe
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions holoviews/core/data/cudf.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,9 @@ def groupby(cls, dataset, dimensions, container_type, group_type, **kwargs):
group_kwargs['kdims'] = kdims
group_kwargs.update(kwargs)

# Propagate dataset
group_kwargs['dataset'] = dataset.dataset

# Find all the keys along supplied dimensions
keys = product(*(dataset.data[dimensions[0]].unique() for d in dimensions))

Expand Down

0 comments on commit fd21ebe

Please sign in to comment.