|
| 1 | +import numpy as numpy |
| 2 | +from matplotlib.ticker import Formatter |
| 3 | + |
| 4 | + |
| 5 | +class _FormatterMixin(Formatter): |
| 6 | + @classmethod |
| 7 | + def _sig_figs(cls, x, n, expthresh=5, forceint=False): |
| 8 | + """ Formats a number with the correct number of sig figs. |
| 9 | +
|
| 10 | + Parameters |
| 11 | + ---------- |
| 12 | + x : int or float |
| 13 | + The number you want to format. |
| 14 | + n : int |
| 15 | + The number of significan figures it should have. |
| 16 | + expthresh : int, optional (default = 5) |
| 17 | + The absolute value of the order of magnitude at which numbers |
| 18 | + are formatted in exponential notation. |
| 19 | + forceint : bool, optional (default is False) |
| 20 | + If true, simply returns int(x) |
| 21 | +
|
| 22 | + Returns |
| 23 | + ------- |
| 24 | + formatted : str |
| 25 | + The formatted number as a string |
| 26 | +
|
| 27 | + Examples |
| 28 | + -------- |
| 29 | + >>> print(_sig_figs(1247.15, 3)) |
| 30 | + 1250 |
| 31 | + >>> print(_sig_figs(1247.15, 7)) |
| 32 | + 1247.150 |
| 33 | +
|
| 34 | + """ |
| 35 | + |
| 36 | + # return a string value unaltered |
| 37 | + if isinstance(x, str) or x == 0.0: |
| 38 | + out = str(x) |
| 39 | + |
| 40 | + # check on the number provided |
| 41 | + elif x is not None and not numpy.isinf(x) and not numpy.isnan(x): |
| 42 | + |
| 43 | + # check on the _sig_figs |
| 44 | + if n < 1: |
| 45 | + raise ValueError("number of sig figs (n) must be greater than zero") |
| 46 | + |
| 47 | + elif forceint: |
| 48 | + out = '{:,.0f}'.format(x) |
| 49 | + |
| 50 | + # logic to do all of the rounding |
| 51 | + else: |
| 52 | + order = numpy.floor(numpy.log10(numpy.abs(x))) |
| 53 | + |
| 54 | + if (-1.0 * expthresh <= order <= expthresh): |
| 55 | + decimal_places = int(n - 1 - order) |
| 56 | + |
| 57 | + if decimal_places <= 0: |
| 58 | + out = '{0:,.0f}'.format(round(x, decimal_places)) |
| 59 | + |
| 60 | + else: |
| 61 | + fmt = '{0:,.%df}' % decimal_places |
| 62 | + out = fmt.format(x) |
| 63 | + |
| 64 | + else: |
| 65 | + decimal_places = n - 1 |
| 66 | + fmt = '{0:.%de}' % decimal_places |
| 67 | + out = fmt.format(x) |
| 68 | + |
| 69 | + # with NAs and INFs, just return 'NA' |
| 70 | + else: |
| 71 | + out = 'NA' |
| 72 | + |
| 73 | + return out |
| 74 | + |
| 75 | + def __call__(self, x, pos=None): |
| 76 | + if x < (10 / self.factor): |
| 77 | + out = self._sig_figs(x, 1) |
| 78 | + elif x <= (99 / self.factor): |
| 79 | + out = self._sig_figs(x, 2) |
| 80 | + else: |
| 81 | + order = numpy.ceil(numpy.round(numpy.abs(numpy.log10(self.top - x)), 6)) |
| 82 | + out = self._sig_figs(x, order + self.offset) |
| 83 | + |
| 84 | + return '{}'.format(out) |
| 85 | + |
| 86 | + |
| 87 | +class PctFormatter(_FormatterMixin): |
| 88 | + factor = 1.0 |
| 89 | + offset = 2 |
| 90 | + top = 100 |
| 91 | + |
| 92 | + |
| 93 | +class ProbFormatter(_FormatterMixin): |
| 94 | + factor = 100.0 |
| 95 | + offset = 0 |
| 96 | + top = 1 |
0 commit comments