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
Using ipython 0.13.1 and pandas 0.10.0, having both the 'color' and 'style' parameter to pandas.Series.plot() gives a value error in pylab. Not sure if I should report this here or in ipython?
frompandasimport*ts=Series(randn(1000), index=date_range('1/1/2000', periods=1000))
ts=ts.cumsum()
# having color and style causes Value error crashts.plot(color='#000099', style='b-')
I'm putting in a fix right now to not raise the exception but the issue here is that color is specified in both color and style. You can do ts.plot(color='#99') or ts.plot(style='b-') or ts.plot(color='#99', style='-') as a workaround
Using ipython 0.13.1 and pandas 0.10.0, having both the 'color' and 'style' parameter to pandas.Series.plot() gives a value error in pylab. Not sure if I should report this here or in ipython?
The text was updated successfully, but these errors were encountered: