5
4

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

Python初学者がpyplotでX軸・Y軸の目盛りの使い方をやってみた

Last updated at Posted at 2018-03-07

こんな使い方があるんだという備忘録としてmatplotlib.pyplotのX軸・Y軸、3つの使い方をまとめます。
※データはあえて入れませんでした。

#使い方1:デフォルトのメモリを使うとき
一番多い使用方法かも。

qiita.rb
import matplotlib.pyplot as plt

#subplot_kw に何も指定しない
fix, axis = plt.subplots(2, 2) 
plt.show()

#使い方2:メモリが邪魔なとき、箱だけ作りたいとき
あまりないと思いますが、画像を収めたいときなど便利かも。

qiita.rb
import matplotlib.pyplot as plt

# subplot_kw に何も表示しないよう指定する
kw = {'xticks':[], 'yticks':[]} 
fix, axis = plt.subplots(2, 2, subplot_kw=kw)
plt.show()

#使い方3:メモリを指定したいとき
使い方1に次いで多いかもしれません。

qiita.rb
import matplotlib.pyplot as plt

# subplot_kw に目盛りを指定
kw = {'xticks':[0, 0.5, 1.0], 'yticks':[0.2, 0.4, 0.6, 0.8] } 
fix, axis = plt.subplots(2, 2, subplot_kw=kw)
plt.show()

#アウトプット
こんな感じです。

xticks_yticks.png

忘れっぽい私には必要です。

5
4
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
5
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?