We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76916db commit f254dfcCopy full SHA for f254dfc
Orange/widgets/visualize/owboxplot.py
@@ -885,10 +885,12 @@ def commit(self):
885
selected, selection = None, []
886
if self.conditions:
887
selected = Values(self.conditions, conjunction=False)(self.dataset)
888
- selection = [i for i, inst in enumerate(self.dataset)
889
- if inst in selected]
+ selected_ids = set(selected.ids)
+ selection = [i for i, id in enumerate(self.dataset.ids)
890
+ if id in selected_ids]
891
self.Outputs.selected_data.send(selected)
- self.Outputs.annotated_data.send(create_annotated_table(self.dataset, selection))
892
+ self.Outputs.annotated_data.send(
893
+ create_annotated_table(self.dataset, selection))
894
895
def show_posthoc(self):
896
def line(y0, y1):
0 commit comments