0
3

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 3 years have passed since last update.

matplotlibで軸とラベルが重なってしまうとき

Posted at

はじめに

スクリーンショット 2020-04-18 8.15.15.png

軸とラベルが重なってしまう
matplotlibをするためだけに生まれてきた男

解決策

ax.set_ylabel("cost", rotation=270, labelpad=15)

上記のrotationは関係ないです(通常右向きのラベル"cost"を反対向きにさせたいので使っています.)

labelpadを指定することで,図からの距離を指定することができます.

これで以下のように,幅を開けることができました. 

スクリーンショット 2020-04-18 8.17.28.png

サイト

0
3
1

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
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?