Sets the data corresponding the length of each error bar. Values are plotted relative to the underlying data. The 'array' property is an array that may be specified as a tuple, list, numpy array, or pandas Series Returns ------- numpy.ndarra
(self)
| 27 | |
| 28 | @property |
| 29 | def array(self): |
| 30 | """ |
| 31 | Sets the data corresponding the length of each error bar. |
| 32 | Values are plotted relative to the underlying data. |
| 33 | |
| 34 | The 'array' property is an array that may be specified as a tuple, |
| 35 | list, numpy array, or pandas Series |
| 36 | |
| 37 | Returns |
| 38 | ------- |
| 39 | numpy.ndarray |
| 40 | """ |
| 41 | return self["array"] |
| 42 | |
| 43 | @array.setter |
| 44 | def array(self, val): |
no outgoing calls