Thanks to visit codestin.com Credit goes to github.com
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 f160a55 commit 8635987Copy full SHA for 8635987
1 file changed
lib/matplotlib/ticker.py
@@ -647,9 +647,8 @@ def autoscale(self):
647
if minpos<0:
648
raise RuntimeError('No positive data to plot')
649
if vmin<0:
650
- print 'minpos', vmin, minpos
651
vmin = minpos
652
-
+
653
if not is_decade(vmin,self.base): vmin = decade_down(vmin,self.base)
654
if not is_decade(vmax,self.base): vmax = decade_up(vmax,self.base)
655
if vmin==vmax:
0 commit comments