您可以首先将数据绘制为误差线,然后用相应的文本对其进行注释。
下面是一个简单的代码供您开始:
import numpy as np
import matplotlib.pyplot as plt
data = np.genfromtxt('data.txt', unpack=True,names=True,dtype=None)
fig, ax = plt.subplots()
ax.set_yticklabels([])
ax.set_xlabel(r'ppm ($\delta$)')
pos = np.arange(len(data))
#invert y axis so 1 is at the top
ax.set_ylim(pos[-1]+1, pos[0]-1)
ax.errorbar(data['mean'], pos, xerr=data['stdev'], fmt=None)
for i,(name,struct) in enumerate(zip(data['Name1'], data['Structure'])):
ax.text(data['mean'][i], i-0.06, "%s, %s" %(name, struct), color='k', ha='center')
plt.show()
更改注释中单个字母的颜色将非常棘手,因为 matplotlib 不支持多色文本。我试图通过使用正则表达式来注释两次相同的文本(一个只有红色的“C”和一个没有“C”)来找到一种解决方法,但是因为每个字母不占用相同的空间,所以它不会对所有单词都很好用(见下文)。
#add to the import
import re
#and change
for i,(name,struct) in enumerate(zip(data['Name1'], data['Structure'])):
text_b = ax.text(data['mean'][i], i-0.05, "%s, %s" %(name, struct), color='k', ha='center')
text_b.set_text(text_b.get_text().replace('C', ' '))
text_r = ax.text(data['mean'][i], i-0.05, "%s %s" %(name, struct), color='r', ha='center')
text_r.set_text(re.sub('[abd-zABD-Z]', ' ', text_r.get_text()))
text_r.set_text(re.sub('[0-9\=\-\W]', ' ', text_r.get_text()))