ノート
完全なサンプルコードをダウンロードするには、ここをクリックしてください
カスタム ティッカー#
このmatplotlib.ticker
モジュールは多くのプリセット ティッカーを定義しますが、主に拡張性、つまりユーザーがカスタマイズしたティッキングをサポートするために設計されました。
この例では、ユーザー定義関数を使用して、y 軸の目盛りを数百万ドル単位でフォーマットします。
import matplotlib.pyplot as plt
def millions(x, pos):
"""The two arguments are the value and tick position."""
return '${:1.1f}M'.format(x*1e-6)
fig, ax = plt.subplots()
# set_major_formatter internally creates a FuncFormatter from the callable.
ax.yaxis.set_major_formatter(millions)
money = [1.5e5, 2.5e6, 5.5e6, 2.0e7]
ax.bar(['Bill', 'Fred', 'Mary', 'Sue'], money)
plt.show()