Skip to content

Commit 193c168

Browse files
Brian Seokmaxim-belkin
authored andcommitted
08-putting-it-all-together.md: fix challenge format (#413)
1 parent 6cfe9df commit 193c168

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

_episodes/08-putting-it-all-together.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ plt.show() # not necessary in Jupyter Notebooks
292292
> > "timezone", "flow_rate", "height"])
293293
> > fig, ax = plt.subplots()
294294
> > flood = discharge[(discharge["datetime"] >= "2013-09-11") &
295-
(discharge["datetime"] < "2013-09-15")]
295+
> > (discharge["datetime"] < "2013-09-15")]
296296
> >
297297
> > ax2 = fig.add_axes([0.65, 0.575, 0.25, 0.3])
298298
> > flood.plot(x ="datetime", y="flow_rate", ax=ax)
@@ -308,13 +308,13 @@ plt.show() # not necessary in Jupyter Notebooks
308308
> > "timezone", "flow_rate", "height"])
309309
> > fig, ax = plt.subplots()
310310
> > flood = discharge[(discharge["datetime"] >= "2013-09-11") &
311-
(discharge["datetime"] < "2013-09-15")]
312-
>>
311+
> > (discharge["datetime"] < "2013-09-15")]
312+
> >
313313
> > ax2 = fig.add_axes([0.65, 0.575, 0.25, 0.3])
314-
>> flood.plot(x ="datetime", y="flow_rate", ax=ax)
314+
> > flood.plot(x ="datetime", y="flow_rate", ax=ax)
315315
> > discharge.plot(x ="datetime", y="flow_rate", ax=ax2)
316316
> > ax2.legend().set_visible(False)
317-
317+
> >
318318
> > ax.set_xlabel("") # no label
319319
> > ax.set_ylabel("Discharge, cubic feet per second")
320320
> > ax.legend().set_visible(False)

0 commit comments

Comments
 (0)