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.
2 parents 351b364 + 386d0d0 commit 4ebe394Copy full SHA for 4ebe394
1 file changed
Orange/widgets/visualize/owboxplot.py
@@ -885,10 +885,11 @@ 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]
+ selection = np.in1d(
+ self.dataset.ids, selected.ids, assume_unique=True).nonzero()[0]
890
self.Outputs.selected_data.send(selected)
891
- self.Outputs.annotated_data.send(create_annotated_table(self.dataset, selection))
+ self.Outputs.annotated_data.send(
892
+ create_annotated_table(self.dataset, selection))
893
894
def show_posthoc(self):
895
def line(y0, y1):
0 commit comments