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 ac3b242 commit 9ba6f02Copy full SHA for 9ba6f02
1 file changed
lib/matplotlib/mlab.py
@@ -3195,7 +3195,7 @@ def offset_line(y, yerr):
3195
o A tuple of length 2. In this case, yerr[0] is the error below *y* and
3196
yerr[1] is error above *y*.
3197
3198
- .. For example::
+ Example::
3199
3200
from pylab import *
3201
x = linspace(0, 2*pi, num=100, endpoint=True)
@@ -3204,6 +3204,7 @@ def offset_line(y, yerr):
3204
plot(x, y)
3205
fill_between(x, ym, y2=yp)
3206
show()
3207
+
3208
"""
3209
if cbook.is_numlike(yerr) or (cbook.iterable(yerr) and len(yerr) == len(y)):
3210
ymin = y - yerr
0 commit comments