Sets the median values. There should be as many items as the number of boxes desired. The 'median' property is an array that may be specified as a tuple, list, numpy array, or pandas Series Returns ------- numpy.ndarray
(self)
| 765 | |
| 766 | @property |
| 767 | def median(self): |
| 768 | """ |
| 769 | Sets the median values. There should be as many items as the |
| 770 | number of boxes desired. |
| 771 | |
| 772 | The 'median' property is an array that may be specified as a tuple, |
| 773 | list, numpy array, or pandas Series |
| 774 | |
| 775 | Returns |
| 776 | ------- |
| 777 | numpy.ndarray |
| 778 | """ |
| 779 | return self["median"] |
| 780 | |
| 781 | @median.setter |
| 782 | def median(self, val): |
no outgoing calls
no test coverage detected