Matplotlib で図のサイズとその形式を変更する方法

Suraj Joshi 2023年1月30日
  1. 初期化中に figure() メソッドで figsize を設定する
  2. Matplotlib の Figure のサイズを変更するには、rcParams を設定する
  3. Matplotlib の Figure サイズを設定するための set_figheight()set_figwidth()
  4. Figure のサイズを変更するための set_size_inches() メソッド
  5. Matplotlib で図の形式を変更する
Matplotlib で図のサイズとその形式を変更する方法

set_figheight()set_figwidth() および set_size_inches() メソッドと一緒に使用して、Matplotlib で図のサイズを変更できます。figure() メソッドで figsize を設定し、rcParams を設定することで、Matplotlib で図のサイズを変更することもできます。同様に、図の形式を変更するには、savefig() メソッドで画像ファイルの拡張子を変更するだけです。

初期化中に figure() メソッドで figsize を設定する

図の幅と高さをインチで指定する初期化時に、figure() メソッドで figsize パラメーターの値を設定できます。

import numpy as np
import matplotlib.pyplot as plt

x = np.linspace(0, 10, 0.5)
m = 1
c = 2
y = m * x + c

plt.figure(figsize=(6, 4))
plt.plot(x, y)
plt.title("y=mx+c")
plt.xlabel("x-axis")
plt.ylabel("y-axis")

plt.show()

出力:

figsize パラメータを使用して figsize を設定する

figsize パラメータのデフォルト値は [6.4, 4.8] です。

Matplotlib の Figure のサイズを変更するには、rcParams を設定する

matplotlib.rcParams ディクショナリに保存されているデフォルトの figure.figsize 値を変更して、Matplotlib の Figure サイズを変更できます。

import numpy as np
import matplotlib.pyplot as plt

x = np.linspace(0, 10, 20)
m = 1
c = 2
y = m * x + c

plt.rcParams["figure.figsize"] = (8, 6)
plt.plot(x, y)
plt.title("y=mx+c")
plt.xlabel("x-axis")
plt.ylabel("y-axis")

plt.show()

出力:

rc パラメータを使用して figsize を設定する

Matplotlib の Figure サイズを設定するための set_figheight()set_figwidth()

フィギュアがすでに作成されている場合は、set_figheight() および set_figwidth() メソッドを使用してフィギュアのサイズを変更できます。

import numpy as np
import matplotlib.pyplot as plt

x = np.linspace(0, 10, 20)
m = 1
c = 2
y = m * x + c

fig = plt.figure()
plt.plot(x, y)
plt.title("y=mx+c")
plt.xlabel("x-axis")
plt.ylabel("y-axis")
fig.set_figheight(6)
fig.set_figwidth(8)

plt.show()

出力:

set_figheight と set_figwidth を使用して figsize を設定する

ここで、set_figheight() メソッドは図の高さを設定し、set_figwidth() は図の幅を設定します。

Figure のサイズを変更するための set_size_inches() メソッド

このメソッドは、図が作成された後に図のサイズを設定することもできます。

import numpy as np
import matplotlib.pyplot as plt

x = np.linspace(0, 10, 20)
m = 1
c = 2
y = m * x + c

fig = plt.figure()
plt.plot(x, y)
plt.title("y=mx+c")
plt.xlabel("x-axis")
plt.ylabel("y-axis")
fig.set_size_inches(5, 5)

plt.show()

出力:

set_size_inches を使用して figsize を設定する

ここで、set_size_inches() メソッドに渡される引数は、図の幅と高さをそれぞれインチで表​​します。

Matplotlib で図の形式を変更する

図の形式を変更するには、savefig() メソッドで画像ファイルの拡張子を変更します。pngjpgsvgpdf などのさまざまな形式でプロットを保存できます。

import numpy as np
import matplotlib.pyplot as plt

x = np.linspace(0, 10, 20)
m = 1
c = 2
y = m * x + c

fig = plt.figure()
plt.plot(x, y)
plt.title("y=mx+c")
plt.xlabel("x-axis")
plt.ylabel("y-axis")
fig.set_size_inches(5, 5)

plt.savefig("Figure saved in jpg format.jpg")

これにより、図が pdf 形式で保存されます。

著者: Suraj Joshi
Suraj Joshi avatar Suraj Joshi avatar

Suraj Joshi is a backend software engineer at Matrice.ai.

LinkedIn

関連記事 - Matplotlib Figure