この例に従ってください:
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
OP 解像度
- OPによって投稿された削除された回答から
Sep 15, 2013
- わかりました、それはのインストールに問題がありました
matplotlib
- わかりました、それはのインストールに問題がありました