我想弄清楚如何在我的情节中只制作带有上限“-”的上误差线,我已经通过lolims争论弄清楚了。不幸的是,我的错误栏标有箭头,我更喜欢默认的。上面的子图是我想要的错误栏,下面的是我想要在上面的子图中的标记。
我的代码:
import pandas as pd
import matplotlib.pyplot as plt
sheet = pd.read_excel(load file with my data)
fig, axs = plt.subplots(2, 1)
fig.suptitle('Gene expression', fontsize=16)
axs[0].bar(sheet.columns, sheet.iloc[17],hatch="/", color="white", edgecolor="black")
axs[0].errorbar(sheet.columns, sheet.iloc[17], yerr=sheet.iloc[22], capsize=3, ecolor='black', fmt=' ', elinewidth=1,
lolims=True)
axs[1].bar(sheet.columns, sheet.iloc[17],hatch="-", color="white", edgecolor="black")
axs[1].errorbar(sheet.columns, sheet.iloc[17], yerr=sheet.iloc[22], capsize=3, ecolor='black', fmt=' ', elinewidth=1,)
plt.show()
和我的地块图片:
我怎样才能实现它?
慕标琳琳
相关分类