Turn scientific notation on or off. See Also -------- ScalarFormatter.set_powerlimits
(self, b)
| 678 | return self._format_maybe_minus_and_locale(self._format, xp) |
| 679 | |
| 680 | def set_scientific(self, b): |
| 681 | """ |
| 682 | Turn scientific notation on or off. |
| 683 | |
| 684 | See Also |
| 685 | -------- |
| 686 | ScalarFormatter.set_powerlimits |
| 687 | """ |
| 688 | self._scientific = bool(b) |
| 689 | |
| 690 | def set_powerlimits(self, lims): |
| 691 | r""" |
no outgoing calls