I am trying to use subplots similar to what is being shown here:
http://matplotlib.org/examples/pylab_examples/subplots_demo.html
axarr = plt.subplots(len(column_list), sharex=True)
subp_num = 0
for j in column_list:
axarr[subp_num].plot(df.values[2:,j])
subp_num = subp_num + 1
then I get this error:
axarr[subp_num].plot(df.values[2:,j])
AttributeError: 'Figure' object has no attribute 'plot'
Any hint on what am I doing wrong? Thanks