Hi there,
I am currently trying to plot my data with a standard deviation. However, due to context reasons, I have a function f(y) instead of f(x). I would now like to make the error look nice with the help of the ribbon attribute. However, the ribbon attribute seems to create the ribbon thickness based on the x-axis. i.e the ribbon seems to be only fit to display a y-error.
For example: I have the following code:
ydata = [1:10;];
xdata = ydata.^2
xerr=rand(Float64, 10)*10
plot(xdata, ydata, xerr=xerr)
which produces the following plot
What I would like to have is something like this
where the error is represented by a somewhat transparent ribbon. However, instead if the yerror, I would like the xerror to be represented by a ribbon
Is there some way of displaying a x-error using the ribbon attribute of plots?
Thank you in advance!