グラフを描く時によく使う設定
import matplotlib.pyplot as plt
# ---------- rcParams
rcParams_dict = {
# ---------- figure
'figure.figsize': (8, 6),
'figure.dpi': 120,
'figure.facecolor': 'white',
# ---------- axes
'axes.grid': True,
'axes.linewidth': 1.5,
'axes.labelsize': 20,
# ---------- ticks
'xtick.direction': 'in',
'ytick.direction': 'in',
'xtick.major.width': 1.0,
'ytick.major.width': 1.0,
'xtick.major.size': 8.0,
'ytick.major.size': 8.0,
'xtick.labelsize': 16,
'ytick.labelsize': 16,
# ---------- lines
'lines.linewidth': 2.0,
'lines.markersize': 12,
# ---------- grid
'grid.linestyle': ':',
# ---------- legend
'legend.fontsize': 20,
# ---------- other fonts
'font.family': 'sans-serif',
'font.sans-serif': ['Helvetica Neue', 'Arial', 'Liberation Sans', 'DejaVu Sans', 'sans'],
#'mathtext.fontset': 'cm',
'mathtext.fontset': 'stix',
#'font.size': 20,
#'svg.fonttype': 'path', # Embed characters as paths
'svg.fonttype': 'none', # Assume fonts are installed on the machine
'pdf.fonttype': 42, # embed fonts in PDF using type42 (True type)
}
plt.rcParams.update(rcParams_dict)
プロット例
ここでは,plt.plot()
のような書き方ではなく
fig, ax = plt.subplots(1, 1)
のようなオブジェクト指向インターフェースを使用.こちらの書き方に慣れた方が細かい設定ができて便利.
fig, ax = plt.subplots(1, 1)
ax.plot([1, 2 ,3, 4], label='$y = x$')
ax.set_xlabel('test $x$')
ax.set_ylabel('test $y$')
ax.legend(loc='best', frameon=True)
jupyterlabやVScodeではグラフを作成した後にfig
(名前は自分で決める)と打ち込んで実行すれば
グラフがいつでも再表示される.
保存
bbox_inches='tight'
をつけると,無駄な余白を省いてくれる.
最初の設定でplt.rcParams['figure.facecolor'] = 'white'
としているので背景は白.
これがない場合はグラフ領域外(軸とか軸ラベルの部分)は無色透明になる.
# ---------- save figure
fig.savefig('fig.svg', bbox_inches='tight') # SVG
#fig.savefig('fig.pdf', bbox_inches='tight') # PDF
#fig.savefig('fig.png', bbox_inches='tight') # PNG
#fig.savefig('fig.png', bbox_inches='tight', dpi=300) # high dpi PNG
stixフォントはmatplotlibでは使えるが,システムに標準でインストールされていないため注意.svgファイルで保存するときはシステムにもstixフォントをインストールしておくとよい.pdfで保存すると,上記で'pdf.fonttype': 42
のように設定しているので,フォントが埋め込まれて見た目が崩れない.ただしsvgより多少ファイルサイズが大きくなり,再編集には不向き.