You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I fixed this in my view.
The example below now behaves as expected:
In [28]: df=pandas.DataFrame(np.random.randn(4,4), index=list('abcd'))
In [29]: df.plot(style='d--', color='g') # green dashed lines with diamondsOut[29]: <matplotlib.axes.AxesSubplotat0xae729ac>In [30]: pandas.Series(np.random.randn(10)).plot(color='g')
Out[30]: <matplotlib.axes.AxesSubplotat0xae729ac>
I have on question though.
In [22]: close('all')
In [23]: pandas.Series(np.random.randn(10)).plot()
Out[23]: <matplotlib.axes.AxesSubplotat0xab0a82c>In [24]: hold(True)
In [25]: pandas.Series(np.random.randn(10)).plot()
Out[25]: <matplotlib.axes.AxesSubplotat0xab0a82c>
This will result in a plot with two lines both blue. In other words there is no color cycling when plotting multiple Series on a single plot. This behavior is different from mpl, is this intentional?
E.g.:
Whose output is:
This used to work correctly in pandas 0.7.2
The text was updated successfully, but these errors were encountered: