I know how to cycle through a list of colors in matplotlib. But is it possible to do something similar with line styles (plain, dotted, dashed, etc.)? I'd need to do that so my graphs would be easier to read when printed. Any suggestions how to do that?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Something like this might do the trick:
Result:
|
|||||||||||||
|
|
If you want the change to be automatic you can add this two lines in the axes.py file of matplotlib: Look for that line:
and add the following line underneath:
And look for the line:
and add the line:
I guess you can do the same for marker. |
|||||
|
|
I use code similar to this one to cycle through different linestyles. By default colours repeat after 7 plots.
|
|||
|
|
|
Similar to Avaris graphs but different....
|
|||
|
|
