I hate those (semi/log-)log plots with: 10^⁻1, 10⁰ and 10¹ labels.
A good way to change only these by, simply: 0.1, 1, and 10 please?
plot(x, y, yscale=:log10, label="", yformatter = yi -> yi==0.1 ? "0.1" : yi==1 ? "1" : yi==10 ? "10" : yi)
does part of the job, but how to keep the default 10^p format for |p|>1, please?