In [5]:
using Plots
gadfly();
default(size=(500,300))


[Plots.jl] Switched to backend: gadfly

In [6]:
plot(1:1000,1:1000, xscale=:log10, yscale=:none)


Out[6]:

In [7]:
plot(1:1000,1:1000, xscale=:log, yscale=:log2)


Out[7]:

In [8]:
plot(1:1000,1:1000, xscale=:asinh, yscale=:sqrt)


Out[8]:

In [ ]: