如何删除人口金字塔中的负 X 轴标签?

How do I remove negative X axis labels in a population pyramid?

我有一个人口金字塔,但一侧的 x 轴是负数,有没有办法只重命名负 x 轴,使其为正数?

# Draw Plot
plt.figure(figsize=(13,10), dpi= 80)
group_col = 't1_gender'
order_of_bars = df.agegroup.unique()[::-1]
colors = [plt.cm.Spectral(i/float(len(df[group_col].unique())-1)) for i in range(len(df[group_col].unique()))]

for c, group in zip(colors, df[group_col].unique()):
    sns.barplot(x='count', y='agegroup', data=df.loc[df[group_col]==group, :], order=order_of_bars, color=c, label=group)

# Decorations    
plt.xlabel("Number of calls")
plt.ylabel("Age group")
plt.yticks(fontsize=12)
plt.title("", fontsize=22)
plt.legend()

plt.savefig('images/figure2.png', dpi=300, facecolor=ax.get_facecolor(), transparent=True, pad_inches=0.0)

plt.show()

一个可能的解决方案是使用 get_xticks() 获取当前刻度,然后使用 np.abs 函数强制刻度标签为正数:

xticks = plt.gca().get_xticks().astype(np.int)
plt.xticks(xticks, labels=np.abs(xticks));

(将代码添加到#decoration部分)