386d0d09f1112862f380cdc38f35f875c03874fa,Orange/widgets/visualize/owboxplot.py,OWBoxPlot,commit,#OWBoxPlot#,882

Before Change


        selected, selection = None, []
        if self.conditions:
            selected = Values(self.conditions, conjunction=False)(self.dataset)
            selection = [i for i, inst in enumerate(self.dataset)
                         if inst in selected]
        self.Outputs.selected_data.send(selected)
        self.Outputs.annotated_data.send(create_annotated_table(self.dataset, selection))

    def show_posthoc(self):

After Change


        selected, selection = None, []
        if self.conditions:
            selected = Values(self.conditions, conjunction=False)(self.dataset)
            selection = np.in1d(
                self.dataset.ids, selected.ids, assume_unique=True).nonzero()[0]
        self.Outputs.selected_data.send(selected)
        self.Outputs.annotated_data.send(
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 4

Non-data size: 4

Instances


Project Name: biolab/orange3
Commit Name: 386d0d09f1112862f380cdc38f35f875c03874fa
Time: 2017-09-19
Author: lan.zagar@fri.uni-lj.si
File Name: Orange/widgets/visualize/owboxplot.py
Class Name: OWBoxPlot
Method Name: commit


Project Name: neurosynth/neurosynth
Commit Name: 29848dc47a98866674703024f5e88ce6027ea597
Time: 2013-06-05
Author: tyarkoni@gmail.com
File Name: neurosynth/base/dataset.py
Class Name: ImageTable
Method Name: get_image_data


Project Name: theislab/scanpy
Commit Name: f057ac20d14701589fae264ffb6de7382fe6ffef
Time: 2017-03-01
Author: flying-sheep@web.de
File Name: scanpy/examples/builtin.py
Class Name:
Method Name: moignard15_raw


Project Name: markovmodel/PyEMMA
Commit Name: 6018096b6ebf4449d391b90750ae617d8741e892
Time: 2019-07-01
Author: thempel@zedat.fu-berlin.de
File Name: pyemma/util/discrete_trajectories.py
Class Name:
Method Name: rewrite_dtrajs_to_core_sets