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 6009e04 commit 0384bdeCopy full SHA for 0384bde
Orange/widgets/visualize/owscatterplotgraph.py
@@ -706,8 +706,10 @@ def get_sizes(self):
706
self.MinShapeSize + (5 + self.point_width) * 0.5)
707
size_column = self._filter_visible(size_column)
708
size_column = size_column.copy()
709
- size_column -= np.nanmin(size_column)
710
- mx = np.nanmax(size_column)
+ with warnings.catch_warnings():
+ warnings.simplefilter("ignore", category=RuntimeWarning)
711
+ size_column -= np.nanmin(size_column)
712
+ mx = np.nanmax(size_column)
713
if mx > 0:
714
size_column /= mx
715
else:
0 commit comments