I am automatically generating numerous figures where each figure has 7 subplots. in each subplot there are numerous traces (up to 17 in one subplot).
In which sequence does Matplotlib assign the colors of the traces automatically as I need to generate a figure key.
i.e. if I have in my code for a subplot with four traces:
axarr[0, 0].plot(data for trace 1) #what would matlibplot color assignment be
axarr[0, 0].plot(data for trace 2) #what would matlibplot color assignment be
axarr[0, 0].plot(data for trace 3) #what would matlibplot color assignment be
axarr[0, 0].plot(data for trace 4) #what would matlibplot color assignment be