0

我想知道是否可以{count}在 suptitle 中的字符串之后操纵变量的属性来更改变量的颜色、位置(通过在下一行中心打印)和字体大小。

到目前为止,我可以在图片中间这样打印出来:

周期 Nr.:0000 中的数据分析

 plt.suptitle(f'Analysis of data in cycle Nr.: {count}', color='yellow', backgroundcolor='black', fontsize=48, fontweight='bold')

访问变量属性的任何想法或技巧?我希望输出如下所示:

周期Nr.中的数据分析:
0000(不同颜色和字体大小)

4

1 回答 1

0

不要为此使用字幕。使用 fig.text(x,y,"Text", args)

# -*- coding: utf-8 -*-
import matplotlib.pyplot as plt

fig = plt.figure()
fig.text(0,0, 'Some Text', color='red')
fig.text(0.2,0.95, 'superDuperCool:', fontsize=12, fontweight='bold')
fig.text(0.45,0.95,'9001', fontsize=14, fontweight='bold', color='green')
ax = fig.add_subplot(111)
fig.subplots_adjust(top=0.85)
ax.set_title('axes title')
ax.set_xlabel('xlabel')
ax.set_ylabel('ylabel')    
ax.plot([2], [1], 'o')
ax.annotate('annotate', xy=(2, 1), xytext=(3, 4),
        arrowprops=dict(facecolor='black', shrink=0.05))
ax.axis([0, 10, 0, 10])

plt.show()
于 2019-01-07T19:51:15.693 回答