Skip to content

Commit

Permalink
Fix for dynamic Dataset.groupby
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Jun 6, 2016
1 parent 11bdd6e commit 744f187
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/core/data/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ def load_subset(*args):
if np.isscalar(group):
return group_type(([group],), group=self.group,
label=self.label, vdims=self.vdims)
return group_type(group).reindex(group_dims)
return group_type(group.reindex(group_dims))
dynamic_dims = [d(values=list(self.interface.values(self, d.name, False)))
for d in dimensions]
return DynamicMap(load_subset, kdims=dynamic_dims)
Expand Down

0 comments on commit 744f187

Please sign in to comment.