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

Method get_ydata

lib/matplotlib/lines.py:1038–1049  ·  view source on GitHub ↗

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

(self, orig=True)

Source from the content-addressed store, hash-verified

1036 return self._x
1037
1038 def get_ydata(self, orig=True):
1039 """
1040 Return the ydata.
1041
1042 If *orig* is *True*, return the original data, else the
1043 processed data.
1044 """
1045 if orig:
1046 return self._yorig
1047 if self._invalidy:
1048 self.recache()
1049 return self._y
1050
1051 def get_path(self):
1052 """Return the `~matplotlib.path.Path` associated with this line."""

Callers 15

get_dataMethod · 0.95
set_3d_propertiesMethod · 0.45
_updateMethod · 0.45
yMethod · 0.45
errorbarMethod · 0.45
test_date_numpyxFunction · 0.45
handle_positionsFunction · 0.45
test_MultiCursorFunction · 0.45
test_agg_filterFunction · 0.45
boxplot_demo.pyFile · 0.45
drop_shadow_lineFunction · 0.45

Calls 1

recacheMethod · 0.95

Tested by 5

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