Matplotlib下标格式字符串

时间:2017-07-10 11:31:10

标签: python matplotlib string-formatting

我知道here之前已经问过这个问题,但是给出的答案对我不起作用。 当我把{}放在我的下标周围时,我得到了一个关键错误。无论我使用“G $ {LA} $”还是“G {LA}”,都会发生这种情况。

作为编辑,这是我正在使用的代码的简化版本:

X=np.array(random.sample(range(1000),10))
Y=np.array(random.sample(range(1000),10))

plt.clf()
f, ax =plt.subplots(1,1)

b, a = np.polyfit(X,Y, 1)

# 3.5 Calculate Pearson's correlation
r, SE = stats.pearsonr(X, Y)
r2 = r*r

# 3.6 Regression line to be added to plot - anchored text automatically locates the text, without the need to specifying the x,y coordinates
anchored_text = AnchoredText("GLA = {:3.2f}*GLD + {:3.2f}\n\nPearson's R = {:3.2f}, SE = {:3.2f}\n $R^2$ = {:3.2f}".format(b,a,r,SE,r2), loc=2)

# 3.7 Plot
ax = sns.regplot(X, Y, color='g')
ax.add_artist(anchored_text)

plt.show()

现在,如果我添加下标,则会引发错误:

---------------------------------------------------------------------------
KeyError                                  Traceback (most recent call last)
<ipython-input-31-00e10c71309f> in <module>()
     19 
     20 # 3.6 Regression line to be added to plot - anchored text automatically locates the text, without the need to specifying the x,y coordinates
---> 21 anchored_text = AnchoredText(r"G$_{LA}$ = {:3.2f}*GLD + {:3.2f}\n\nPearson's R = {:3.2f}, SE = {:3.2f}\n $R^2$ = {:3.2f}".format(b,a,r,SE, r2), loc=2)
     22 
     23 # 3.7 Plot

KeyError: 'LA'

那是因为我使用的是AnchoredText吗?或者自其他帖子发布以来有什么变化吗?

1 个答案:

答案 0 :(得分:2)

正如@NipunBatra在评论中所说,似乎{LA}被理解为字符串格式的一部分。为了在{LA}周围解决这个添加和额外的一对花括号。您的anchored_text将成为:

anchored_text = AnchoredText(r"G$_{{LA}}$ = {:3.2f}*GLD + {:3.2f}\n\nPearson's R ="
                             r" {:3.2f}, SE = {:3.2f}\n $R^2$ = {:3.2f}".format(b,a,r,SE, r2), loc=2)