I often find it useful to display values using SI prefixes. For example, I find: 10.75n
to be more readable than: 1.075e-8 ...So I created a module for this functionality: https://github.com/ma-laforge/NumericIO.jl *Question:* Should I be publishing this to METADATA? It seems a bit heavy to register an entire module for this simple functionality. Is there something else to do that would be more appropriate (a better place for this functionality)? *Comment:* This module makes use of Grisu, which I do not believe is a public feature of Julia... So I am not convinced it is technically "acceptable" to rely on it from an external module. MA
