27

按照这个例子

import numpy as np
import matplotlib.pyplot as plt

fig = plt.figure()
for i, label in enumerate(('A', 'B', 'C', 'D')):
    ax = fig.add_subplot(2,2,i+1)
    ax.text(0.05, 0.95, label, transform=ax.transAxes,
      fontsize=16, fontweight='bold', va='top')

plt.show()

我得到这个输出:

在此处输入图像描述

为什么我的标签重量正常,而文档显示这应该创建粗体字母A, B, C, D

我也收到此警告:

Warning (from warnings module):
File "C:\Python27\lib\site-packages\matplotlib\font_manager.py", line 1228
UserWarning)
UserWarning: findfont: Could not match :family=Bitstream Vera Sans:style=italic:variant=normal:weight=bold:stretch=normal:size=x-small. Returning C:\Python27\lib\site-packages\matplotlib\mpl-data\fonts\ttf\Vera.ttf

操作分辨率

4

5 回答 5

14

尝试使用weight而不是fontweight.

于 2017-04-28T14:47:29.453 回答
7

也许尝试使用这个 -

plt.rcParams['axes.labelsize'] = 16
plt.rcParams['axes.labelweight'] = 'bold'

在您的程序中在全球范围内执行此操作。

于 2017-04-12T12:04:55.387 回答
5

您问题中的示例适用于我的机器。因此,您肯定有图书馆问题。您是否考虑过使用乳胶制作粗体文字?这里有一个例子

在此处输入图像描述

代码

import numpy as np
import matplotlib.pyplot as plt

fig, axs = plt.subplots(3, 1)
ax0, ax1, ax2 = axs

ax0.text(0.05, 0.95, 'example from question',
        transform=ax0.transAxes, fontsize=16, fontweight='bold', va='top')
ax1.text(0.05, 0.8, 'you can try \\textbf{this} using \\LaTeX', usetex=True,
        transform=ax1.transAxes, fontsize=16, va='top')
ax2.text(0.05, 0.95,
         'or $\\bf{this}$ (latex math mode with things like '
         '$x_\mathrm{test}^2$)',
        transform=ax2.transAxes, fontsize=10, va='top')

plt.show()
于 2020-05-01T08:05:10.267 回答
1

不确定您是否还有问题。我在 Python 2.7 的 Anaconda/Spyder 中尝试了您的代码。这些图带有粗体标签(A、B、C、D)。我同意问题可能与图书馆有关。尝试替换/更新 font_manager.py 或确认字体文件存在:

库\站点包\matplotlib\mpl-data\fonts\ttf\

于 2017-03-07T16:36:08.757 回答
0

我有同样的问题,今天花了好几个小时。这是帮助我的解决方案:

import matplotlib
matplotlib.font_manager._rebuild()

有了这个,font_manager可以轻松升级。

于 2020-10-08T05:07:05.280 回答