Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08bde66 commit 45a5ab6Copy full SHA for 45a5ab6
1 file changed
examples/pylab_examples/fill_between.py
@@ -28,7 +28,7 @@
28
# because of edge effects over multiple contiguous regions.
29
fig = figure()
30
ax = fig.add_subplot(111)
31
-ax1.plot(x, y1, x, y2, color='black')
+ax.plot(x, y1, x, y2, color='black')
32
ax.fill_between(x, y1, y2, where=y2>y1, facecolor='green')
33
ax.fill_between(x, y1, y2, where=y2<=y1, facecolor='red')
34
ax.set_title('fill between where')
0 commit comments