Automatic color cycling when plotting consecutive timeseries without arguments disappeared in 0.8.1 · Issue #2816 · pandas-dev/pandas (original) (raw)
The fact that it took so long for anyone to realise the behaviour had changed just goes to show that it is a very minor problem. I was pretty sure it used to work at one point so I chased it down. I'd say it is quite useful from time to time when you are working interactively and feeling lazy at the same time.
In case the behaviour change was not intentional I'd be willing to look into it but some pointers would be appreciated to get started.
Here is a snippet:
import matplotlib.pyplot as plt import pandas as pd
for i in range(3): pd.util.testing.makeTimeSeries().cumsum().plot() plt.show()