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

Method cla

lib/matplotlib/axes/_base.py:1470–1477  ·  view source on GitHub ↗

Clear the Axes.

(self)

Source from the content-addressed store, hash-verified

1468 self.__clear()
1469
1470 def cla(self):
1471 """Clear the Axes."""
1472 # Act as an alias, or as the superclass implementation depending on the
1473 # subclass implementation.
1474 if self._subclass_uses_cla:
1475 self.__clear()
1476 else:
1477 self.clear()
1478
1479 class ArtistList(Sequence):
1480 """

Callers 6

clearMethod · 0.95
test_axes3d_claFunction · 0.45
test_inverted_claFunction · 0.45
_cbar_claMethod · 0.45
claFunction · 0.45

Calls 2

__clearMethod · 0.95
clearMethod · 0.95

Tested by 3

test_axes3d_claFunction · 0.36
test_inverted_claFunction · 0.36