In [7]:
using Plots, StatsBase
winston()
xstr = [@sprintf("x%02d",i) for i in 1:10]
x = sort(sample(xstr, 100))
y = rand(length(x))
scatter(x,y)


[Plots.jl] Switched to backend: winston
Out[7]:

In [8]:
scatter(y,x)
xlims!(0,6)
xlabel!("hi")


Out[8]:

In [ ]: