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

Method get_xdata

lib/matplotlib/lines.py:1025–1036  ·  view source on GitHub ↗

Return the xdata. If *orig* is *True*, return the original data, else the processed data.

(self, orig=True)

Source from the content-addressed store, hash-verified

1023 return self.get_xdata(orig=orig), self.get_ydata(orig=orig)
1024
1025 def get_xdata(self, orig=True):
1026 """
1027 Return the xdata.
1028
1029 If *orig* is *True*, return the original data, else the
1030 processed data.
1031 """
1032 if orig:
1033 return self._xorig
1034 if self._invalidx:
1035 self.recache()
1036 return self._x
1037
1038 def get_ydata(self, orig=True):
1039 """

Callers 15

get_dataMethod · 0.95
set_3d_propertiesMethod · 0.45
_updateMethod · 0.45
xMethod · 0.45
errorbarMethod · 0.45
test_date_numpyxFunction · 0.45
handle_positionsFunction · 0.45
test_MultiCursorFunction · 0.45
test_ecdfFunction · 0.45
test_agg_filterFunction · 0.45
boxplot_demo.pyFile · 0.45
create_artistsMethod · 0.45

Calls 1

recacheMethod · 0.95

Tested by 5

test_date_numpyxFunction · 0.36
handle_positionsFunction · 0.36
test_MultiCursorFunction · 0.36
test_ecdfFunction · 0.36
test_agg_filterFunction · 0.36