sig renders numbers as character strings with a certain number of significant digits. Big numbers can get represented in scientific notation and we can control that through the maxex argument. Frequently (most of the time) we don't want scientific notation and if creating this function today, I'd probably default maxex to some large number.
This PR lets you control maxex through an option allowing users to turn off scientific notation globally in a project.
sig renders numbers as character strings with a certain number of significant digits. Big numbers can get represented in scientific notation and we can control that through the
maxex
argument. Frequently (most of the time) we don't want scientific notation and if creating this function today, I'd probably defaultmaxex
to some large number.This PR lets you control
maxex
through an option allowing users to turn off scientific notation globally in a project.