gpt4 book ai didi

python - 如何在堆叠条形图显示中抑制零

转载 作者:行者123 更新时间:2023-11-28 16:56:30 26 4
gpt4 key购买 nike

我有一个示例堆叠条形字符,如下所示。我怎样才能抑制图表中的“0”值

无论我有 0 的地方,我都不想显示这些值。有什么办法可以抑制零 enter image description here

我在显示数据时有以下代码

for xpos, ypos, yval in zip(TABLE_NAMES, ID1/2, ID1):
plt.text(xpos, ypos, yval, ha="center", va="center",fontsize=20)
for xpos, ypos, yval in zip(TABLE_NAMES, ID1+ID2/2, ID2):
plt.text(xpos, ypos, yval, ha="center", va="center",fontsize=20)

我尝试了以下方法

ID1[ID1 == 0] = np.nan ( to pass nan value but i am getting error 
Error: ValueError: cannot convert float NaN to integer

有什么办法可以实现

以及如何使 y 轴显示为每个数据(如下图所示,我在 Y 轴上最多有 6 个。我为此使用 np.arange

np.arange(0,6,1) 

但在未来 i 可能有不同的值大于 100 。在不指定 np.arange 之类的任何函数的情况下,有什么方法可以动态传递它来处理没有任何范围的 yaxis ..?

最佳答案

由于已经生成了矩形 block ,我们可以从绘图中获取高度和宽度并根据这些添加文本:

In [164]: df
Out[164]:
a b c d
0 0.807540 0.719843 0.291329 0.928670
1 0.449082 0.000000 0.575919 0.299698
2 0.703734 0.626004 0.582303 0.243273
3 0.363013 0.539557 0.000000 0.743613
4 0.185610 0.526161 0.795284 0.929223
5 0.000000 0.323683 0.966577 0.259640
6 0.000000 0.386281 0.000000 0.000000
7 0.500604 0.131910 0.413131 0.936908
8 0.992779 0.672049 0.108021 0.558684
9 0.797385 0.199847 0.329550 0.605690

In [165]:
from matplotlib.patches import Rectangle
df.plot.bar(stacked=True)
ax = plt.gca()
for p in ax.get_children()[:-1]: # skip the last patch as it is the background
if isinstance(p, Rectangle):
x, y = p.get_xy()
w, h = p.get_width(), p.get_height()
if h > 0: # anything that have a height of 0 will not be annotated
ax.text(x + 0.5 * w, y + 0.5 * h, '%0.2f'%h, va='center', ha='center')
plt.show()

enter image description here

关于python - 如何在堆叠条形图显示中抑制零,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57844582/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com