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
A clear and concise description of what the bug is.
Similar to #19 when plotting 2 models it sometimes happens that the colours for the 2nd model aren't consistent due to the colour cycle not being properly updated in the 1st call.
This was introduced through #21 by switching from direct calls to ax.plot([], []) to only passing x=[] (but only to one function).
Describe the bug
A clear and concise description of what the bug is.
Similar to #19 when plotting 2 models it sometimes happens that the colours for the 2nd model aren't consistent due to the colour cycle not being properly updated in the 1st call.
This was introduced through #21 by switching from direct calls to
ax.plot([], [])
to only passingx=[]
(but only to one function).To Reproduce
Expected behavior
In the above image:
Additional context
In the diagonal case this must be due to somehow nothing being drawn in the 1st call where
diagonal=None
.In the 2D case this has to do with
ax.plot
andax.scatter
not sharing the same colour cycle, so both have to be called every time.The text was updated successfully, but these errors were encountered: