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

Method _fill_between_process_units

lib/matplotlib/axes/_axes.py:6110–6113  ·  view source on GitHub ↗

Handle united data, such as dates.

(self, ind_dir, dep_dir, ind, dep1, dep2, **kwargs)

Source from the content-addressed store, hash-verified

6108 return collection
6109
6110 def _fill_between_process_units(self, ind_dir, dep_dir, ind, dep1, dep2, **kwargs):
6111 """Handle united data, such as dates."""
6112 return map(np.ma.masked_invalid, self._process_unit_info(
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):

Callers 2

_fill_between_x_or_yMethod · 0.95
set_dataMethod · 0.80

Calls 1

_process_unit_infoMethod · 0.80

Tested by

no test coverage detected