Closed jeremymanning closed 7 years ago
Calls like this should work: plot_coords((a, b), ('k.', 'bo'))
I'm not sure how to deal with keyword arguments...for example, what happens in the example below?
plot_coords((a, b), 'o', color=((0, 0, 1), (0, 1, 0)))
or should it be
plot_coords((a, b), 'o', (color=(0, 0, 1), color=(0, 1, 0)))
?
@andrewheusser-- bringing you into this in case you have insights or suggestions...
@jeremymanning @KirstensGitHub working on this today!
i've been working on this feature today.
we should make a decision about specifying colors and linestyles together, or separately. if its separately, the colors arg can be a color name (e.g. k), a hex code or rgb tuple (triple?).
If its together (e.g. 'k--'), that makes the parsing a bit messier.
My opinion is that it would be cleanest to pass them separately, a colors list and a linestyles list.
thoughts? @jeremymanning @KirstensGitHub
I think @andrewheusser resolved this issue last week?
@andrewheusser -- has this issue been addressed? if so, please close it. (or, if not, please give a status update.)
yep! this is working, merged into master and the api is documented. sorry, forgot to close this issue. closing now
Feature request: in plot_coords.py, add ability to assign multiple plot styles to a list of trajectories (like MATLAB version)