@@ -53,7 +53,7 @@ code. e.g.
53
53
54
54
Fernando Perez has provided a nice top level method to create in
55
55
:func: `~matplotlib.pyplots.subplots ` (note the "s" at the end)
56
- everything at once, and turn off x and y sharing for the whole bunch.
56
+ everything at once, and turn on x and y sharing for the whole bunch.
57
57
You can either unpack the axes individually::
58
58
59
59
# new style method 1; unpack the axes
@@ -255,7 +255,7 @@ alpha channel is useful, not just aesthetic.
255
255
# plot it!
256
256
fig, ax = plt.subplots(1)
257
257
ax.plot(t, mu1, lw=2, label='mean population 1', color='blue')
258
- ax.plot(t, mu1 , lw=2, label='mean population 2', color='yellow')
258
+ ax.plot(t, mu2 , lw=2, label='mean population 2', color='yellow')
259
259
ax.fill_between(t, mu1+sigma1, mu1-sigma1, facecolor='blue', alpha=0.5)
260
260
ax.fill_between(t, mu2+sigma2, mu2-sigma2, facecolor='yellow', alpha=0.5)
261
261
ax.set_title('random walkers empirical $\m u$ and $\p m \s igma$ interval')
0 commit comments