python - matplotlib 2 个级别中多个重叠的 xlabel

标签 python matplotlib

我正在尝试找到一种解决方案来解决图中有多个 xlabel 的情况,我不能放弃任何一个。
问题在于 xlabel 相互运行,导致绘图不可读(如 subplot(1,1) 中所示)
我想知道是否可以以某种方式使每个第二个标签处于另一个高度(如所附示例)

enter image description here

我的想法:
o

最佳答案

两种方法

import numpy as np
import matplotlib.pyplot as plt

# call this function in xticks parameters
def transform_xlabels(xlabels):
    return ('\n\n%s' % label if i % 2 else label for i, label in enumerate(xlabels))


N = 5
menMeans = (20, 35, 30, 35, 27)
womenMeans = (25, 32, 34, 20, 25)
menStd = (2, 3, 4, 1, 2)
womenStd = (3, 5, 2, 3, 3)
ind = np.arange(N)    # the x locations for the groups
width = 0.35       # the width of the bars: can also be len(x) sequence

p1 = plt.bar(ind, menMeans, width, yerr=menStd)
p2 = plt.bar(ind, womenMeans, width,
             bottom=menMeans, yerr=womenStd)

plt.ylabel('Scores')
plt.title('Scores by group')
test = 'G1 abc \ndaido misco iso'
xlabels = ('G1 %s' % test, 'G2 %s' % test, 'G3 %s'  % test, 'G4 %s'  % test, 'G5 %s'  % test)

# function is called
plt.xticks(ind, transform_xlabels(xlabels))
plt.yticks(np.arange(0, 81, 10))
plt.legend((p1[0], p2[0]), ('Men', 'Women'))

plt.show()

输出

bar graph

关于python - matplotlib 2 个级别中多个重叠的 xlabel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60399815/

相关文章:

python - Matplotlib 箱线图宽度(对数刻度)

python - Django url 模板标签添加绝对文件路径

python - 管理 Python 虚拟环境的 requirements.txt 的内容

python - 如何增加 Pandas 图中xticks的大小

python - 在 matplotlib 中提供旋转散点图的更快方法?

python - matplotlib 表中的粗体文本

python - 生成尽可能不同的 RGB 颜色

python - 保存 Selenium 的当前状态

python - 如何连接 Vagrant 主机上的兔子?

python - 减小具有许多重叠点和 alpha 的矢量化散点图磁盘上的大小