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

Method contourf

lib/matplotlib/axes/_axes.py:7155–7169  ·  view source on GitHub ↗

Plot filled contours. Call signature:: contourf([X, Y,] Z, /, [levels], **kwargs) The arguments *X*, *Y*, *Z* are positional-only. %(contour_doc)s

(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

7153 @_preprocess_data()
7154 @_docstring.interpd
7155 def contourf(self, *args, **kwargs):
7156 """
7157 Plot filled contours.
7158
7159 Call signature::
7160
7161 contourf([X, Y,] Z, /, [levels], **kwargs)
7162
7163 The arguments *X*, *Y*, *Z* are positional-only.
7164 %(contour_doc)s
7165 """
7166 kwargs['filled'] = True
7167 contours = mcontour.QuadContourSet(self, *args, **kwargs)
7168 self._request_autoscale_view()
7169 return contours
7170
7171 def clabel(self, CS, levels=None, **kwargs):
7172 """

Calls 1