51aa7adbc1371e159afb28b7b42bcec876d1635c,Orange/widgets/unsupervised/owdistances.py,OWDistances,__init__,#OWDistances#,36
Before Change
box="Distance Metric", items=list(zip(*_METRICS))[0],
callback=self._invalidate
)
gui.auto_commit(self.controlArea, self, "autocommit", "Apply",
checkbox_label="Apply on any change")
self.layout().setSizeConstraint(self.layout().SetFixedSize)
@check_sql_input
After Change
box="Distance Metric", items=list(zip(*_METRICS))[0],
callback=self._invalidate
)
box = gui.auto_commit(self.buttonsArea, self, "autocommit", "Apply",
box=False, checkbox_label="Apply on any change")
box.layout().insertWidget(0, self.report_button)
box.layout().insertSpacing(1, 8)
self.layout().setSizeConstraint(self.layout().SetFixedSize)
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 4
Instances
Project Name: biolab/orange3
Commit Name: 51aa7adbc1371e159afb28b7b42bcec876d1635c
Time: 2016-04-15
Author: janez.demsar@fri.uni-lj.si
File Name: Orange/widgets/unsupervised/owdistances.py
Class Name: OWDistances
Method Name: __init__
Project Name: biolab/orange3
Commit Name: c556d3580a8f10afe23a2743adf46941ca1cde78
Time: 2017-09-11
Author: janez.demsar@fri.uni-lj.si
File Name: Orange/widgets/data/owpythonscript.py
Class Name: OWPythonScript
Method Name: __init__
Project Name: biolab/orange3
Commit Name: 02b93629db0378af16479b07526f2945848ae994
Time: 2016-01-08
Author: janez.demsar@fri.uni-lj.si
File Name: Orange/widgets/regression/owlinearregression.py
Class Name: OWLinearRegression
Method Name: __init__