Anyone know how to translate this suggestion to julia:
https://preinventedwheel.com/matplotlib-thousands-separator-1-step-guide/
It’s something like:
ax[:xaxis][:set_major_formatter](matplotlib[:ticker][:FuncFormatter](lambda x, loc: "{:,}"format(int(x))))
But don’t think the anonymous function bit works with julia syntax.