I am learning \'pandas\' and trying to plot id column but I get an error AttributeError: Unknown property color_cycle and empty graph. The graph on
id
AttributeError: Unknown property color_cycle
There's currently a bug in Pandas 0.17.1 with Matplotlib 1.5.0
print pandas.__version__ print matplotlib.__version__
Instead of using
import pandas as pd pd.set_option('display.mpl_style', 'default')
Use:
import matplotlib matplotlib.style.use('ggplot')