web-dev-qa-db-ja.com

しきい値の線でmatplotlib棒グラフを作成するにはどうすればよいですか?

しきい値の線でmatplotlib棒グラフを作成する方法を知りたいのですが、しきい値の線より上の棒の部分は赤色に、しきい値の線より下の部分は緑色になっているはずです。簡単な例を教えてください。ウェブ上で何も見つかりませんでした。

14
alwbtc

この例 のように積み上げ棒グラフにしますが、データをしきい値を超える部分と下の部分に分けます。例:

import numpy as np
import matplotlib.pyplot as plt

# some example data
threshold = 43.0
values = np.array([30., 87.3, 99.9, 3.33, 50.0])
x = range(len(values))

# split it up
above_threshold = np.maximum(values - threshold, 0)
below_threshold = np.minimum(values, threshold)

# and plot it
fig, ax = plt.subplots()
ax.bar(x, below_threshold, 0.35, color="g")
ax.bar(x, above_threshold, 0.35, color="r",
        bottom=below_threshold)

# horizontal line indicating the threshold
ax.plot([0., 4.5], [threshold, threshold], "k--")

fig.savefig("look-ma_a-threshold-plot.png")

Example plot showing the result of the code

18
Carsten

このように単純にaxhlineを使用できます。これを見てください ドキュメント

# For your case
plt.axhline(y=threshold,linewidth=1, color='k')

# Another example - You can also define xmin and xmax
plt.axhline(y=5, xmin=0.5, xmax=3.5)
7
Abu Shoeb