diff --git a/episodes/08-plot.md b/episodes/08-plot.md index 50e64779..3a26accb 100644 --- a/episodes/08-plot.md +++ b/episodes/08-plot.md @@ -753,6 +753,7 @@ Hint: pass `loop_df` as an argument to `Polygon` as we did in episode 7 and then ```python fig = plt.figure() ax = fig.add_subplot(1,1,1) +plot_cmd(candidate_df) poly_cmd = Polygon(loop_df, closed=True, facecolor='C1', alpha=0.4) ax.add_patch(poly_cmd)