Is it possible to make a plot with only error bars using Plots.jl? Alternatively, is it possible to style the errorbars independent of the associate :path or :scatter series?
basically want
x = collect(1:5); y = 5*x; e = log.(y)
plot(x, y, yerror = e)
but with no line connecting the mid-point of the error bars. Tried to set the linealpha to zero, but that also impacts how the errorbars are drawn.