You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried adding erroline! to a plot with Dates as x-axis but it does not work.
using Dates, StatsPlots
x = DateTime(2000):Hour(1):DateTime(2000,1,4)
x_last = x[end-72:end]
y = randn(length(x))
Y = randn(length(x_last), 100)
plot(x, y)
# plot!(x_last, Y[:,1]) # works
errorline!(x_last, Y) # do not work
Just errorline(x_last, Y) works but as soon as another plot is added (or it is added) the result is wrong.
I tried looking at the code but could not see what is wrong (maybe it is just a Date+Plot issue? But plot!(Date, y) works.
The text was updated successfully, but these errors were encountered:
I tried adding
erroline!
to a plot with Dates as x-axis but it does not work.Just
errorline(x_last, Y)
works but as soon as another plot is added (or it is added) the result is wrong.I tried looking at the code but could not see what is wrong (maybe it is just a Date+Plot issue? But
plot!(Date, y)
works.The text was updated successfully, but these errors were encountered: