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

Method fill_betweenx

lib/matplotlib/axes/_axes.py:6129–6133  ·  view source on GitHub ↗
(self, y, x1, x2=0, where=None,
                      step=None, interpolate=False, **kwargs)

Source from the content-addressed store, hash-verified

6127 replace_names=["x", "y1", "y2", "where"])
6128
6129 def fill_betweenx(self, y, x1, x2=0, where=None,
6130 step=None, interpolate=False, **kwargs):
6131 return self._fill_between_x_or_y(
6132 "y", y, x1, x2,
6133 where=where, interpolate=interpolate, step=step, **kwargs)
6134
6135 if _fill_between_x_or_y.__doc__:
6136 fill_betweenx.__doc__ = _fill_between_x_or_y.__doc__.format(

Callers 7

fill_betweenxFunction · 0.80
test_fill_betweenxMethod · 0.80
test_fill_betweenx_inputFunction · 0.80
test_stairs_fillFunction · 0.80
test_fillbetween_cycleFunction · 0.80

Calls 1

_fill_between_x_or_yMethod · 0.95

Tested by 5

test_fill_betweenxMethod · 0.64
test_fill_betweenx_inputFunction · 0.64
test_stairs_fillFunction · 0.64
test_fillbetween_cycleFunction · 0.64