Yields the majority class (= most frequent class).
(self)
| 1707 | |
| 1708 | @property |
| 1709 | def majority(self): |
| 1710 | """ Yields the majority class (= most frequent class). |
| 1711 | """ |
| 1712 | d = sorted((v, k) for k, v in self._classes.iteritems()) |
| 1713 | return d and d[-1][1] or None |
| 1714 | |
| 1715 | @property |
| 1716 | def minority(self): |