如何创建带有阈值线的 matplotlib 条形图?

问题描述 投票:0回答:3

我想知道如何创建带有阈值线的matplotlib条形图,阈值线以上的条形部分应为红色,阈值线以下的部分应为绿色。请给我一个简单的例子,我在网上找不到任何东西。

python matplotlib charts
3个回答
38
投票

您可以像这样简单地使用

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)

29
投票

将其设为堆叠条形图,如此示例所示,但将数据分为阈值以上的部分和阈值以下的部分。示例:

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


0
投票

资源需求条形图: 相机操作员周需求 1-4 0(预制作) 5-8 4(设置设备、排练) 9-12 6(拍摄主要场景) 13-16 8(拍摄复杂场景、多地点) 17-20 4(拍摄最后场景,结束) 21-30 0(后期制作)

© www.soinside.com 2019 - 2024. All rights reserved.