-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Color by column #9
Comments
Maybe |
I sometimes do similar stuff indeed, writing it as fplt = FPlot(wide, (@o _.x))
scatter!(@insert fplt[2] = @o _.y1)
scatter!(@insert fplt[2] = @o _.y2) or (more commonly) fplt = FPlot(data, (@o _.x))
for i in 1:5
scatter!(@insert fplt[2] = @o _.y[i]) # y in each row is a 5-element array
end Not sure how a better interface would look like... |
Oh, that's what comes to mind: FPlot(wide, (@o _.x), (@o _.y1 _.y2)) # for several independent columns
FPlot(data, (@o _.x), (@o _.y[∗])) # for array/tuple/... elements The full semantics need to be carefully thought of, as this would be the first departure from "one FPlot plot call = one regular Makie plot call (just with cleverely forwarded args)". |
Currently, calling While cycling doesn't work, it doesn't make much sense to implement stuff like |
Can we do this less verbosely?
The text was updated successfully, but these errors were encountered: