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 9dbdc73 commit 4951d9bCopy full SHA for 4951d9b
tutorials/intermediate/autoscale.py
@@ -78,14 +78,14 @@
78
fig, ax = plt.subplots(ncols=3, figsize=(16, 10))
79
ax[0].imshow(zz)
80
ax[0].margins(0.2)
81
-ax[0].set_title("use_sticky_edges unchanged\nmargins(0.2)")
+ax[0].set_title("default use_sticky_edges\nmargins(0.2)")
82
ax[1].imshow(zz)
83
ax[1].margins(0.2)
84
ax[1].use_sticky_edges = False
85
ax[1].set_title("use_sticky_edges=False\nmargins(0.2)")
86
ax[2].imshow(zz)
87
ax[2].margins(-0.2)
88
-ax[2].set_title("use_sticky_edges unchanged\nmargins(-0.2)")
+ax[2].set_title("default use_sticky_edges\nmargins(-0.2)")
89
90
###############################################################################
91
# We can see that setting ``use_sticky_edges`` to *False* renders the image with
0 commit comments