matplotlib.pyplot.fill(*args, data=None, **kwargs)[source]¶Plot filled polygons.
| Parameters: |
|
|---|---|
| Returns: |
|
| Other Parameters: |
|
Notes
Use fill_between() if you would like to fill the region between
two curves.
Note
In addition to the above described arguments, this function can take a data keyword argument. If such a data argument is given, the following arguments are replaced by data[<arg>]:
Objects passed as data must support item access (data[<arg>]) and
membership test (<arg> in data).