matplotlib: 折れ線グラフで複数の配列・ラベル・カラーなどの属性をまとめてセットする

折れ線グラフで複数の配列・ラベル・カラーなどの属性をまとめてセットする場合、単純な方法としては以下のように一つの信号 (y_arr) ずつplt.plot()するコードが考えられます。 length = 100 x = np.arange(0, length) y = np.array([ np.random.normal(0, 5.0, length), np.random.normal(0, 1.0, length), np.random.no…