Hi all,
I was wondering if it is possible to shade the area under the curve in Plots.jl? For example, can I adapt the code below to shade the area between -1 and 1?
Thanks!
using Plots, Distributions
x = range(-3, 3, length=100)
y = pdf.(Normal(0,1), x)
plot(x, y, grid=false)