Skip to content

Commit

Permalink
CuDF Series is not iterable (#4624)
Browse files Browse the repository at this point in the history
  • Loading branch information
bryevdv committed Sep 24, 2020
1 parent f2fb5d4 commit d67e2c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/core/data/cudf.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def groupby(cls, dataset, dimensions, container_type, group_type, **kwargs):
group_kwargs['dataset'] = dataset.dataset

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

# Iterate over the unique entries applying selection masks
grouped_data = []
Expand Down

0 comments on commit d67e2c5

Please sign in to comment.