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

Method get_data

lib/matplotlib/lines.py:1017–1023  ·  view source on GitHub ↗

Return the line data as an ``(xdata, ydata)`` pair. If *orig* is *True*, return the original data.

(self, orig=True)

Source from the content-addressed store, hash-verified

1015 return self._markersize
1016
1017 def get_data(self, orig=True):
1018 """
1019 Return the line data as an ``(xdata, ydata)`` pair.
1020
1021 If *orig* is *True*, return the original data.
1022 """
1023 return self.get_xdata(orig=orig), self.get_ydata(orig=orig)
1024
1025 def get_xdata(self, orig=True):
1026 """

Callers 13

onpickMethod · 0.45
geometryMethod · 0.45
copy_from_bboxMethod · 0.45
restore_regionMethod · 0.45
print_rgbaMethod · 0.45
paintEventMethod · 0.45
drawMethod · 0.45
includeFunction · 0.45
test_stairs_updateFunction · 0.45
_assert_equalFunction · 0.45
_close_lineMethod · 0.45

Calls 2

get_xdataMethod · 0.95
get_ydataMethod · 0.95

Tested by 4

includeFunction · 0.36
test_stairs_updateFunction · 0.36
_assert_equalFunction · 0.36