matplotlibプロットのフォントサイズを変更する方法


542

matplotlibプロットのすべての要素(ティック、ラベル、タイトル)のフォントサイズを変更するにはどうすればよいですか?

私は目盛りラベルのサイズを変更する方法を知っています、これは以下で行われます:

import matplotlib 
matplotlib.rc('xtick', labelsize=20) 
matplotlib.rc('ytick', labelsize=20) 

しかし、残りの部分をどのように変更しますか?

回答:


629

matplotlibのドキュメントから、

font = {'family' : 'normal',
        'weight' : 'bold',
        'size'   : 22}

matplotlib.rc('font', **font)

これにより、すべてのアイテムのフォントがkwargsオブジェクトで指定されたフォントに設定されますfont

または、この回答でrcParams update提案されている方法を使用することもできます

matplotlib.rcParams.update({'font.size': 22})

または

import matplotlib.pyplot as plt
plt.rcParams.update({'font.size': 22})

利用可能なプロパティの完全なリストは、matplotlibカスタマイズページにあります


2
素敵な、それは任意のフォントサイズプロパティをオーバーライドを除いて、それの方è_éで発見
ヨタ

2
どこで私のような要素のためのより多くのオプションを見つけることができます'family''weight'など?
2015年

2
@HermanSchaaf; 私は以前そのページを訪れました。私はのためのすべてのオプションを知っているしたいと思います'family'ように'normal''sans-serif'など
haccks

77
多くの人がで始まるので、それも持っているimport matplotlib.pyplot as pltことを指摘したいと思うかもしれません。インポートを変更せずに実行できます。pyplotrcplt.rc(...
LondonRob 2015

21
せっかちな人の場合:2番目のリンクのように、デフォルトのフォントサイズは10です。
FvD

304

私のようなコントロールフリークなら、すべてのフォントサイズを明示的に設定することをお勧めします。

import matplotlib.pyplot as plt

SMALL_SIZE = 8
MEDIUM_SIZE = 10
BIGGER_SIZE = 12

plt.rc('font', size=SMALL_SIZE)          # controls default text sizes
plt.rc('axes', titlesize=SMALL_SIZE)     # fontsize of the axes title
plt.rc('axes', labelsize=MEDIUM_SIZE)    # fontsize of the x and y labels
plt.rc('xtick', labelsize=SMALL_SIZE)    # fontsize of the tick labels
plt.rc('ytick', labelsize=SMALL_SIZE)    # fontsize of the tick labels
plt.rc('legend', fontsize=SMALL_SIZE)    # legend fontsize
plt.rc('figure', titlesize=BIGGER_SIZE)  # fontsize of the figure title

rc上のメソッドを呼び出すサイズを設定することもできますmatplotlib

import matplotlib

SMALL_SIZE = 8
matplotlib.rc('font', size=SMALL_SIZE)
matplotlib.rc('axes', titlesize=SMALL_SIZE)

# and so on ...

9
私は答えの多くを試しました。これは、少なくともJupyterノートブックで最高に見えます。上のブロックを上部にコピーして、3つのフォントサイズ定数をカスタマイズします。
fviktor 2017

3
fvitkorに同意します。これが最良の答えです。
SeF 2018年

9
私にとって、タイトルサイズは機能しませんでした。私が使用したもの:plt.rc('axes', titlesize=BIGGER_SIZE)
FernandoIrarrázavalG

1
同じオブジェクトのすべての設定を1行に組み合わせることができると思います。例:plt.rc('axes', titlesize=SMALL_SIZE, labelsize=MEDIUM_SIZE)
BallpointBen 2018

198
matplotlib.rcParams.update({'font.size': 22})

1
場合によっては、この解決策は、最初のプロットを作成し、提案どおりに「更新」する場合にのみ機能します。これにより、新しい図のフォントサイズが更新されます。rcParamsを初期化するには、最初のプロットが必要かもしれません...
Songio

191

すでに作成されている特定のプロットのみのフォントサイズを変更したい場合は、以下を試してください:

import matplotlib.pyplot as plt

ax = plt.subplot(111, xlabel='x', ylabel='y', title='title')
for item in ([ax.title, ax.xaxis.label, ax.yaxis.label] +
             ax.get_xticklabels() + ax.get_yticklabels()):
    item.set_fontsize(20)

1
私の目的は、xyラベル、目盛り、タイトルのフォントを異なるサイズにすることでした。これの修正版は私にはとてもうまくいきました。
–ÉbeIsaac 2017

6
凡例も取得するには、ax.legend()。get_texts()を使用します。Matplotlib 1.4でテスト済み。
James S.

これは質問に最も直接答えます。ありがとうございました。
jimh

ax=plt.gca()軸を定義せずにプロットを作成した場合は、必要になる場合があります。
ディルナン

@JamesS。むしろ使用ax.get_legend().get_texts()、ためax.legend()再描画の値を返すの上にデフォルトのパラメータで全体の伝説ax.get_legend()
ギモート

69

更新:やや良い方法については、回答の下部を参照してください。
アップデート#2:凡例のタイトルのフォントを変更することも考え出した。
アップデート#3:Matplotlib 2.0.0にバグがあります対数軸の目盛りラベルがデフォルトのフォントに戻る原因ます。2.0.1で修正する必要がありますが、回答の2番目の部分に回避策を含めました。

この答えは、凡例を含むすべてのフォントを変更しようとする人、およびそれぞれに異なるフォントとサイズを使用しようとする人を対象としています。rcは使用していません(私にはうまくいかないようです)。なかなか面倒ですが、他の方法では個人的にはなかなか対応できませんでした。それは基本的にここでryggyrの答えをSOの他の答えと組み合わせます。

import numpy as np
import matplotlib.pyplot as plt
import matplotlib.font_manager as font_manager

# Set the font dictionaries (for plot title and axis titles)
title_font = {'fontname':'Arial', 'size':'16', 'color':'black', 'weight':'normal',
              'verticalalignment':'bottom'} # Bottom vertical alignment for more space
axis_font = {'fontname':'Arial', 'size':'14'}

# Set the font properties (for use in legend)   
font_path = 'C:\Windows\Fonts\Arial.ttf'
font_prop = font_manager.FontProperties(fname=font_path, size=14)

ax = plt.subplot() # Defines ax variable by creating an empty plot

# Set the tick labels font
for label in (ax.get_xticklabels() + ax.get_yticklabels()):
    label.set_fontname('Arial')
    label.set_fontsize(13)

x = np.linspace(0, 10)
y = x + np.random.normal(x) # Just simulates some data

plt.plot(x, y, 'b+', label='Data points')
plt.xlabel("x axis", **axis_font)
plt.ylabel("y axis", **axis_font)
plt.title("Misc graph", **title_font)
plt.legend(loc='lower right', prop=font_prop, numpoints=1)
plt.text(0, 0, "Misc text", **title_font)
plt.show()

この方法の利点は、いくつかのフォント辞書を使用することで、さまざまなタイトルに異なるフォント/サイズ/太さ/色を選択し、目盛りラベルのフォントを選択し、凡例のフォントをすべて個別に選択できることです。


更新:

私は、フォント辞書を廃止し、システム上の任意のフォント(.otfフォントを含む)を許可する、少し異なる、雑然としたアプローチを作成しました。ものごとに個別のフォントを使用するには、変数を増やしfont_pathfont_prop変数を記述します。

import numpy as np
import matplotlib.pyplot as plt
import matplotlib.font_manager as font_manager
import matplotlib.ticker
# Workaround for Matplotlib 2.0.0 log axes bug https://github.com/matplotlib/matplotlib/issues/8017 :
matplotlib.ticker._mathdefault = lambda x: '\\mathdefault{%s}'%x 

# Set the font properties (can use more variables for more fonts)
font_path = 'C:\Windows\Fonts\AGaramondPro-Regular.otf'
font_prop = font_manager.FontProperties(fname=font_path, size=14)

ax = plt.subplot() # Defines ax variable by creating an empty plot

# Define the data to be plotted
x = np.linspace(0, 10)
y = x + np.random.normal(x)
plt.plot(x, y, 'b+', label='Data points')

for label in (ax.get_xticklabels() + ax.get_yticklabels()):
    label.set_fontproperties(font_prop)
    label.set_fontsize(13) # Size here overrides font_prop

plt.title("Exponentially decaying oscillations", fontproperties=font_prop,
          size=16, verticalalignment='bottom') # Size here overrides font_prop
plt.xlabel("Time", fontproperties=font_prop)
plt.ylabel("Amplitude", fontproperties=font_prop)
plt.text(0, 0, "Misc text", fontproperties=font_prop)

lgd = plt.legend(loc='lower right', prop=font_prop) # NB different 'prop' argument for legend
lgd.set_title("Legend", prop=font_prop)

plt.show()

うまくいけば、これは包括的な答えです


40

これは、フォントサイズを変更するために驚くほどうまく機能する、まったく異なるアプローチです。

フィギュアサイズを変更!

私は通常、次のようなコードを使用します。

import matplotlib.pyplot as plt
import numpy as np
fig = plt.figure(figsize=(4,3))
ax = fig.add_subplot(111)
x = np.linspace(0,6.28,21)
ax.plot(x, np.sin(x), '-^', label="1 Hz")
ax.set_title("Oscillator Output")
ax.set_xlabel("Time (s)")
ax.set_ylabel("Output (V)")
ax.grid(True)
ax.legend(loc=1)
fig.savefig('Basic.png', dpi=300)

小さなあなたはフィギュアのサイズを作り、大きなフォントがあるプロットに対する。これにより、マーカーも拡大されます。注:dpiまたはドット/インチも設定します。私はこれをAMTA(American Modeling Teacher of America)フォーラムの投稿から学びました。上記のコードの例:ここに画像の説明を入力してください


7
軸ラベルが切り取られないようにするには、bbox_inches引数とともにFigureを保存します fig.savefig('Basic.png', bbox_inches="tight")
Paw

図を保存しない場合はどうなりますか?Juypter Notebookでプロットすると、結果の軸ラベルが切り取られます。
Zythyr、

ありがとう!DPI設定を指摘すると、すべてのラインなどのサイズ、フォントサイズ、調整することなく、私のプロットの印刷可能なバージョンを準備中で、私に非常に役立ちました
ybullを

27

使用する plt.tick_params(labelsize=14)


4
コードスニペットをご利用いただきありがとうございます。このコードスニペットは、限られた範囲内ですぐに役立つ可能性があります。適切な説明は、なぜこれが問題の優れた解決策であるかを説明することにより、長期的な価値を大幅に改善し、他の同様の質問を持つ将来の読者にとってより有用になります。答えを編集して、仮定を含めて説明を追加してください。
セファー

22

あなたは使用することができますplt.rcParams["font.size"]設定するためfont_sizematplotlibも使用できるplt.rcParams["font.family"]設定のためfont_familymatplotlib。この例を試してください:

import matplotlib.pyplot as plt
plt.style.use('seaborn-whitegrid')

label = [1,2,3,4,5,6,7,8]
x = [0.001906,0.000571308,0.0020305,0.0037422,0.0047095,0.000846667,0.000819,0.000907]
y = [0.2943301,0.047778308,0.048003167,0.1770876,0.532489833,0.024611333,0.157498667,0.0272095]


plt.ylabel('eigen centrality')
plt.xlabel('betweenness centrality')
plt.text(0.001906, 0.2943301, '1 ', ha='right', va='center')
plt.text(0.000571308, 0.047778308, '2 ', ha='right', va='center')
plt.text(0.0020305, 0.048003167, '3 ', ha='right', va='center')
plt.text(0.0037422, 0.1770876, '4 ', ha='right', va='center')
plt.text(0.0047095, 0.532489833, '5 ', ha='right', va='center')
plt.text(0.000846667, 0.024611333, '6 ', ha='right', va='center')
plt.text(0.000819, 0.157498667, '7 ', ha='right', va='center')
plt.text(0.000907, 0.0272095, '8 ', ha='right', va='center')
plt.rcParams["font.family"] = "Times New Roman"
plt.rcParams["font.size"] = "50"
plt.plot(x, y, 'o', color='blue')

10

ここに私がJupyter Notebookで一般的に使用するものがあります:

# Jupyter Notebook settings

from IPython.core.display import display, HTML
display(HTML("<style>.container { width:95% !important; }</style>"))
%autosave 0
%matplotlib inline
%load_ext autoreload
%autoreload 2

from IPython.core.interactiveshell import InteractiveShell
InteractiveShell.ast_node_interactivity = "all"


# Imports for data analysis
import pandas as pd
import matplotlib.pyplot as plt
pd.set_option('display.max_rows', 2500)
pd.set_option('display.max_columns', 500)
pd.set_option('display.max_colwidth', 2000)
pd.set_option('display.width', 2000)
pd.set_option('display.float_format', lambda x: '%.3f' % x)

#size=25
size=15
params = {'legend.fontsize': 'large',
          'figure.figsize': (20,8),
          'axes.labelsize': size,
          'axes.titlesize': size,
          'xtick.labelsize': size*0.75,
          'ytick.labelsize': size*0.75,
          'axes.titlepad': 25}
plt.rcParams.update(params)

8

上記のものに基づいて:

import matplotlib.pyplot as plt
import matplotlib.font_manager as fm

fontPath = "/usr/share/fonts/abc.ttf"
font = fm.FontProperties(fname=fontPath, size=10)
font2 = fm.FontProperties(fname=fontPath, size=24)

fig = plt.figure(figsize=(32, 24))
fig.text(0.5, 0.93, "This is my Title", horizontalalignment='center', fontproperties=font2)

plot = fig.add_subplot(1, 1, 1)

plot.xaxis.get_label().set_fontproperties(font)
plot.yaxis.get_label().set_fontproperties(font)
plot.legend(loc='upper right', prop=font)

for label in (plot.get_xticklabels() + plot.get_yticklabels()):
    label.set_fontproperties(font)

5

これはMarius Reteganの回答の拡張です。すべての変更を含む個別のJSONファイルを作成し、rcParams.updateでそれをロードすることができます。変更は現在のスクリプトにのみ適用されます。そう

import json
from matplotlib import pyplot as plt, rcParams

s = json.load(open("example_file.json")
rcParams.update(s)

この「example_file.json」を同じフォルダに保存します。

{
  "lines.linewidth": 2.0,
  "axes.edgecolor": "#bcbcbc",
  "patch.linewidth": 0.5,
  "legend.fancybox": true,
  "axes.color_cycle": [
    "#348ABD",
    "#A60628",
    "#7A68A6",
    "#467821",
    "#CF4457",
    "#188487",
    "#E24A33"
  ],
  "axes.facecolor": "#eeeeee",
  "axes.labelsize": "large",
  "axes.grid": true,
  "patch.edgecolor": "#eeeeee",
  "axes.titlesize": "x-large",
  "svg.fonttype": "path",
  "examples.directory": ""
}

4

デフォルトのフォントを維持できるようにするため、Figureのサイズを変更するのが最も簡単な方法であるとHuster教授に完全に同意します。図をpdfとして保存するとき、軸ラベルがカットされているため、これをbbox_inchesオプションで補完する必要がありました。

import matplotlib.pyplot as plt
plt.figure(figsize=(4,3))
plt.savefig('Basic.pdf', bbox_inches='tight')
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.