DOC: Limit figures to 8 inch widths.

This commit is contained in:
Tony S Yu
2012-02-20 09:40:56 -05:00
parent 0c304d5acd
commit cb93ebbf61
12 changed files with 52 additions and 59 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ image = camera()
thresh = threshold_otsu(image)
binary = image > thresh
plt.figure(figsize=(10, 3.5))
plt.figure(figsize=(8, 2.5))
plt.subplot(1, 3, 1)
plt.imshow(image, cmap=plt.cm.gray)
plt.title('Original')