Sets the values of the sectors. If omitted, we count occurrences of each label. The 'values' property is an array that may be specified as a tuple, list, numpy array, or pandas Series Returns ------- numpy.ndarray
(self)
| 1241 | |
| 1242 | @property |
| 1243 | def values(self): |
| 1244 | """ |
| 1245 | Sets the values of the sectors. If omitted, we count |
| 1246 | occurrences of each label. |
| 1247 | |
| 1248 | The 'values' property is an array that may be specified as a tuple, |
| 1249 | list, numpy array, or pandas Series |
| 1250 | |
| 1251 | Returns |
| 1252 | ------- |
| 1253 | numpy.ndarray |
| 1254 | """ |
| 1255 | return self["values"] |
| 1256 | |
| 1257 | @values.setter |
| 1258 | def values(self, val): |
no outgoing calls