先来看看我们要实现的效果图吧:
先来看看Matplotlib的plot函数原型
plt.plot(x, y, color='r', maker='o', linestyle='-', linewidth=2.0)
注意上面的color、maker、linestyle在同时画多组线的时候,我们想调线性、颜色的时候,你估计会想到用个列表的形式实现:
maker=['o', '^', '*']
可惜,plot函数并没有实现这个功能,只能一次次指定,这里可以借助python的itertools迭代实现,还是以我上面的图作为例子,看看是怎么实现的吧。
make = itertools.cycle(["o","*","^"]) for i in [2013, 2014, 2015]: axf.plot(axe.get_xticks(), right_data[i], linestyle='-', marker=make.next(), linewidth=2.0)
注意:参考4实现这个方法使用zip,以后可以注意下。
#参考#
- http://matplotlib.org/users/pyplot_tutorial.html#controlling-line-properties
- http://stackoverflow.com/questions/29163096/matplotlib-different-dashed-lines-instead-of-coloured-lines
- http://stackoverflow.com/questions/23000578/cycling-through-list-of-linestyles-when-plotting-columns-of-a-matrix-in-matplotl
- http://stackoverflow.com/questions/33523476/matplotlib-plot-columns-of-pandas-dataframe-with-different-marker-and-label