MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / fill_between

Method fill_between

lib/matplotlib/axes/_axes.py:6115–6119  ·  view source on GitHub ↗
(self, x, y1, y2=0, where=None, interpolate=False,
                     step=None, **kwargs)

Source from the content-addressed store, hash-verified

6113 [(ind_dir, ind), (dep_dir, dep1), (dep_dir, dep2)], kwargs))
6114
6115 def fill_between(self, x, y1, y2=0, where=None, interpolate=False,
6116 step=None, **kwargs):
6117 return self._fill_between_x_or_y(
6118 "x", x, y1, y2,
6119 where=where, interpolate=interpolate, step=step, **kwargs)
6120
6121 if _fill_between_x_or_y.__doc__:
6122 fill_between.__doc__ = _fill_between_x_or_y.__doc__.format(

Callers 15

stackplotFunction · 0.45
fill_betweenFunction · 0.45
test_fill_betweenMethod · 0.45
test_hatchingFunction · 0.45
test_fill_between_inputFunction · 0.45
test_stairs_fillFunction · 0.45

Calls 1

_fill_between_x_or_yMethod · 0.95