How to plot mean +/- deviation in Plots.jl?

For future reference, this is the solution:

using Plots

xs = linspace(1,100)
μs = log.(xs)
σs = rand(length(xs))

plot(xs,μs,grid=false,ribbon=σs,fillalpha=.5)

Thank you @mkborregaard.

41 Likes