Sets the quantity of component `a` in each data point. If `a`, `b`, and `c` are all provided, they need not be normalized, only the relative values matter. If only two arrays are provided they must be normalized to match `ternary .sum`. The 'c' property is
(self)
| 145 | |
| 146 | @property |
| 147 | def c(self): |
| 148 | """ |
| 149 | Sets the quantity of component `a` in each data point. If `a`, |
| 150 | `b`, and `c` are all provided, they need not be normalized, |
| 151 | only the relative values matter. If only two arrays are |
| 152 | provided they must be normalized to match `ternary<i>.sum`. |
| 153 | |
| 154 | The 'c' property is an array that may be specified as a tuple, |
| 155 | list, numpy array, or pandas Series |
| 156 | |
| 157 | Returns |
| 158 | ------- |
| 159 | numpy.ndarray |
| 160 | """ |
| 161 | return self["c"] |
| 162 | |
| 163 | @c.setter |
| 164 | def c(self, val): |
no outgoing calls
no test coverage detected