0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

python matplotlibでlabelの文字を変えずに文字サイズを変える

Posted at

通常以下のように、グラフ作成時に文字サイズを指定できます。

fig,ax = plt.subplots()
ax.plot(range(1,10,1))
ax.set_xlabel("x label",fontweight="bold",fontsize=20)
ax.set_ylabel("y label")
plt.show()

image.png

この後にラベルの文字サイズを変えます。

y_label = ax.yaxis.get_label()
print(y_label)

Text(24.000000000000007, 0.5, 'y label')

これより、
Text インスタンスが帰ってきてるのがわかりました。
なので、あとはTextインスタンスに対する処理として書けます。

いまylabeの設定がxlabelと異なるので、同じにしてみます。

fig,ax = plt.subplots()
ax.plot(range(1,10,1))
ax.set_xlabel("x label",fontweight="bold",fontsize=20)
ax.set_ylabel("y label")

y_label = ax.yaxis.get_label()
y_label.set_fontsize(20)
y_label.set_fontweight("bold")
plt.show()

image.png

できました~
もちろんこれ以外にもtextインスタンスに行える処理ができます。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?