Ciro Santilli OurBigBook.com  Sponsor 中国独裁统治 China Dictatorship 新疆改造中心、六四事件、法轮功、郝海东、709大抓捕、2015巴拿马文件 邓家贵、低端人口、西藏骚乱
matplotlib/prop_cycle.py
#!/usr/bin/env python
"""
http://stackoverflow.com/questions/4971269/how-to-pick-a-new-color-for-each-plotted-line-within-a-figure-in-matplotlib/39522128#39522128
"""
from cycler import cycler
def plot(plt, default_params):
    plt.rc('axes', prop_cycle=(cycler('color', ['r', 'g', 'b'])))
    plt.plot([1, 2])
    plt.plot([2, 3])
    plt.plot([3, 4])
    plt.plot([4, 5])
    plt.plot([5, 6])