Sets the mean values. There should be as many items as the number of boxes desired. This attribute has effect only under the q1/median/q3 signature. If `mean` is not provided but a sample (in `y` or `x`) is set, we compute the mean for each box using the samp
(self)
| 725 | |
| 726 | @property |
| 727 | def mean(self): |
| 728 | """ |
| 729 | Sets the mean values. There should be as many items as the |
| 730 | number of boxes desired. This attribute has effect only under |
| 731 | the q1/median/q3 signature. If `mean` is not provided but a |
| 732 | sample (in `y` or `x`) is set, we compute the mean for each box |
| 733 | using the sample values. |
| 734 | |
| 735 | The 'mean' property is an array that may be specified as a tuple, |
| 736 | list, numpy array, or pandas Series |
| 737 | |
| 738 | Returns |
| 739 | ------- |
| 740 | numpy.ndarray |
| 741 | """ |
| 742 | return self["mean"] |
| 743 | |
| 744 | @mean.setter |
| 745 | def mean(self, val): |
no outgoing calls
no test coverage detected