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
The user-recipe we have now works well enough for the majority of simple cases, but I think it will be much cleaner if Plots can handle AxisArrayTable type arguments generally not just our user-recipe specific signature f(m::AxisArrayTable...).
The text was updated successfully, but these errors were encountered:
use cases such as a fill plot(m.a, fill=(m.b, 0.2, :red)) currently does not work because Plots does not know how to extract the numbers from AxisArrayTable. (and right now we return an AxisArrayTable from m.b as opposed to a Vector like DataFrames does).
The user-recipe we have now works well enough for the majority of simple cases, but I think it will be much cleaner if Plots can handle AxisArrayTable type arguments generally not just our user-recipe specific signature
f(m::AxisArrayTable...)
.The text was updated successfully, but these errors were encountered: