Return the ydata. If *orig* is *True*, return the original data, else the processed data.
(self, orig=True)
| 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.""" |