我有一些图,我想在某些标签中使用子索引,但是每当我使用数学模式时,所有标签都会出现偏移。我可以为所有标签设置一些偏移量吗?使用数学模式有什么我缺少的吗?
作为参考,这是我的完整代码(我从 获取堆叠代码):
import numpy as NP
import matplotlib.patches as mpatches
import matplotlib.pyplot as plt
import matplotlib.cm as cm
data = '''0 0 0 0 0 0 0 0
0 0 0 0 0 0 0.015 0.015
0 0 0 0 0 0 0 0
0 0 0 0 0.04 0.04 0 0
0 0 0 0 0.03 0.01 0.19 0.14
0 0 0.772 0 0.07 0.01 0.12 0.11
0 0.879 0 0 0 0.07 0 0.085
0.056 0 0 0 0 0 0 0
'''.splitlines()
data = tuple(reversed([NP.array([float(j) for j in i.split(' ')]) for i in data]))
colors = cm.rainbow(NP.linspace(0, 1, 8))
axes = plt.figure().add_subplot(111)
axes.set_xticklabels([r'$m_%d$'%i for i in ([i+1 for i in range(8)])])
plt.stackplot(NP.arange(8)+1,
data,
colors=colors)
plt.xlim(1,8)
plt.ylabel("Error")
plt.legend([mpatches.Patch(color=i) for i in colors],
[r'$m_%d$'%i for i in ([i+1 for i in range(8)])])
plt.show()
更新:问题出在用于交互式显示的后端
按照评论中提供的提示,我尝试写入文件并且标签正确显示。问题似乎出在 MacOSX 后端。
- darwin 上的 Python 2.7.9(默认,2014 年 12 月 11 日,02:36:08)[GCC 4.2.1 Compatible Apple LLVM 5.1 (clang-503.0.40)]
- matplotlib。版本1.4.3
- matplotlib.get_backend() MacOSX