Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2b8e33d

Browse files
committed
Fixed pylab-like syntax
1 parent a77e995 commit 2b8e33d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/showcase/anatomy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
Y3 = np.random.uniform(Y1, Y2, len(X))
1414

1515
plt.figure(figsize=(8, 8), facecolor="w")
16-
ax = plt.subplot(111, aspect=1)
16+
ax = plt.subplot(1, 1, 1, aspect=1)
1717

1818

1919
def minor_tick(x, pos):

0 commit comments

Comments
 (0)