Skip to content

Commit 380fff9

Browse files
committed
widgets: Increase limit for ordered clustering
1 parent 967de58 commit 380fff9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Orange/widgets/unsupervised/owdistancemap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ class Outputs:
287287
# Disable clustering for inputs bigger than this
288288
_MaxClustering = 25000
289289
# Disable cluster leaf ordering for inputs bigger than this
290-
_MaxOrderedClustering = 1000
290+
_MaxOrderedClustering = 2000
291291

292292
def __init__(self):
293293
super().__init__()

Orange/widgets/visualize/owheatmap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ class Outputs:
327327
NoPosition, PositionTop, PositionBottom = 0, 1, 2
328328

329329
# Disable cluster leaf ordering for inputs bigger than this
330-
_MaxOrderedClustering = 1000
330+
_MaxOrderedClustering = 2000
331331

332332
gamma = settings.Setting(0)
333333
threshold_low = settings.Setting(0.0)

0 commit comments

Comments
 (0)