Skip to content

Commit 86e4afc

Browse files
author
Robert (Bob) Turner
committed
remove final? plt.show()s
1 parent ad2ad07 commit 86e4afc

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

_episodes/09-challenges.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ and `data/colonies-03.tif`.
6868
> > # display the image
6969
> > fig, ax = plt.subplots()
7070
> > plt.imshow(bacteria_image)
71-
> > plt.show()
7271
> > ~~~
7372
> > {: .language-python}
7473
> >
@@ -84,7 +83,6 @@ and `data/colonies-03.tif`.
8483
> > # display the gray image
8584
> > fig, ax = plt.subplots()
8685
> > plt.imshow(gray_bacteria, cmap="gray")
87-
> > plt.show()
8886
> > ~~~
8987
> > {: .language-python}
9088
> >
@@ -101,7 +99,6 @@ and `data/colonies-03.tif`.
10199
> > plt.xlabel("gray value")
102100
> > plt.ylabel("pixel count")
103101
> > plt.xlim(0, 1.0)
104-
> > plt.show()
105102
> > ~~~
106103
> > {: .language-python}
107104
> >
@@ -117,7 +114,6 @@ and `data/colonies-03.tif`.
117114
> > mask = blurred_image < 0.2
118115
> > fig, ax = plt.subplots()
119116
> > plt.imshow(mask, cmap="gray")
120-
> > plt.show()
121117
> > ~~~
122118
> > {: .language-python}
123119
> >
@@ -146,7 +142,6 @@ and `data/colonies-03.tif`.
146142
> > # plot overlay
147143
> > fig, ax = plt.subplots()
148144
> > plt.imshow(summary_image)
149-
> > plt.show()
150145
> > ~~~
151146
> > {: .language-python}
152147
> >

0 commit comments

Comments
 (0)