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

Method contour

lib/matplotlib/axes/_axes.py:7137–7151  ·  view source on GitHub ↗

Plot contour lines. Call signature:: contour([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

7135 @_preprocess_data()
7136 @_docstring.interpd
7137 def contour(self, *args, **kwargs):
7138 """
7139 Plot contour lines.
7140
7141 Call signature::
7142
7143 contour([X, Y,] Z, /, [levels], **kwargs)
7144
7145 The arguments *X*, *Y*, *Z* are positional-only.
7146 %(contour_doc)s
7147 """
7148 kwargs['filled'] = False
7149 contours = mcontour.QuadContourSet(self, *args, **kwargs)
7150 self._request_autoscale_view()
7151 return contours
7152
7153 @_preprocess_data()
7154 @_docstring.interpd

Callers 15

contourFunction · 0.45
test_contour_colorbarFunction · 0.45
test_clabelMethod · 0.45
test_contourMethod · 0.45
test_imshow_clipFunction · 0.45
test_contour_colorbarFunction · 0.45
test_wrong_use_colorizerFunction · 0.45
test_patheffect2Function · 0.45
test_collectionFunction · 0.45

Calls 1

Tested by 15

test_contour_colorbarFunction · 0.36
test_clabelMethod · 0.36
test_contourMethod · 0.36
test_imshow_clipFunction · 0.36
test_contour_colorbarFunction · 0.36
test_wrong_use_colorizerFunction · 0.36
test_patheffect2Function · 0.36
test_collectionFunction · 0.36
test_tickedstrokeFunction · 0.36