Source code for filters.numbers

[docs] def map_scientific(values): return ["{:.2E}".format(v) for v in values if v is not None]