When I call: using Plots plotlyjs() plot( xlims = (0,2), xscale = :log10, )
I get a plot where the xaxis is log scale and ranges from 1 to 100, as I would expect. However, if I call: plot( xlims = (-3,2), xscale = :log10, ) I do not get a plot where the xaxis is log scale and ranges from 0.001 to 100, as I would have expected. Instead I get a domain error. Is this a bug?