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
This is caused by minorticks. They see a step width of 50 from the xticks you set and xlims of -1e9 .. 220 from the plots you create. So they think the (major) ticks are -1e9:50:220, which is 20 million values, each getting 2 ticks. (Technically there is also padding on autolimits so it ends up being a bit more.)
The user side fix would be to call xlims!() before displaying, or set xautolimits = false for the density plot.
cc. @sfranchel this means we shouldn't use the
density!()
to "fake" a legend element...The text was updated successfully, but these errors were encountered: