I've got these two lists which are x,y points to be plotted:
microns = [38, 45, 53, 63, 75, 90, 106, 125, 150, 180]
cumulative_dist = [25.037, 32.577, 38.34, 43.427, 51.57,56.99, 62.41,69.537,74.85, 81.927]
The thing is I need to plot them following the scale showed in the image below (more info here), which is a log-normal plot.
How can I get this scale using matplotlib?
I guess I'll need to use matplotlib.scale.FuncScale, but I'm not quite sure how to get there.

