I want to plot multiple lines from a pandas dataframe and setting different options for each line. I would like to do something like
testdataframe=pd.DataFra
So I think the answer lies in passing the color and style in the same argument. The following example works with pandas 0.19.2:
testdataframe=pd.DataFrame(np.arange(12).reshape(4,3))
testdataframe.plot(style=['r*-','bo-','y^-'], linewidth=2.0)
Unfortunately, it seems that passing multiple line widths as an input to matplotlib is not possible.