通常、軸の (例: ax.xaxis
) ラベルの位置を変更するには、 を実行しますaxis.label.set_position(xy)
。または、'ax.xaxis.set_x(1)` のように 1 つの座標のみを設定することもできます。
あなたの場合、それは次のようになります。
ax['xzero'].label.set_x(1)
ax['yzero'].label.set_y(1)
ただし、axislines
(およびaxisartist
または内の他のものaxes_grid
)はやや古いモジュールです(これがaxes_grid1
存在する理由です)。場合によっては、適切にサブクラス化されません。したがって、ラベルの x 位置と y 位置を設定しようとしても、何も変わりません!
簡単な回避策は、 を使用ax.annotate
して矢印の端にラベルを配置することです。ただし、最初に別の方法でプロットを作成してみましょう (その後、annotate
いずれにしても元に戻ります)。
最近では、達成しようとしていることに新しいスパイン機能を使用した方がよいでしょう。
x 軸と y 軸を「ゼロ」に設定するのは、次のように簡単です。
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
for spine in ['left', 'bottom']:
ax.spines[spine].set_position('zero')
# Hide the other spines...
for spine in ['right', 'top']:
ax.spines[spine].set_color('none')
ax.axis([-4, 10, -4, 10])
ax.grid()
plt.show()
ただし、素敵な矢印の装飾が必要です。これはもう少し複雑ですが、適切な引数で注釈を付けるための 2 つの呼び出しだけです。
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
#-- Set axis spines at 0
for spine in ['left', 'bottom']:
ax.spines[spine].set_position('zero')
# Hide the other spines...
for spine in ['right', 'top']:
ax.spines[spine].set_color('none')
#-- Decorate the spins
arrow_length = 20 # In points
# X-axis arrow
ax.annotate('', xy=(1, 0), xycoords=('axes fraction', 'data'),
xytext=(arrow_length, 0), textcoords='offset points',
arrowprops=dict(arrowstyle='<|-', fc='black'))
# Y-axis arrow
ax.annotate('', xy=(0, 1), xycoords=('data', 'axes fraction'),
xytext=(0, arrow_length), textcoords='offset points',
arrowprops=dict(arrowstyle='<|-', fc='black'))
#-- Plot
ax.axis([-4, 10, -4, 10])
ax.grid()
plt.show()
(矢印の幅はテキスト サイズ (または のオプション パラメータarrowprops
) によって制御されるため、必要に応じて のようなものを指定するsize=16
とannotate
、矢印が少し広くなります。)
この時点で、"X" と "Y" のラベルを注釈の一部として追加するのが最も簡単ですが、それらの位置を設定することもできます。
空の文字列の代わりに注釈を付ける最初の引数としてラベルを渡すだけで (そして配置を少し変更すると)、矢印の端に素敵なラベルが表示されます。
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
#-- Set axis spines at 0
for spine in ['left', 'bottom']:
ax.spines[spine].set_position('zero')
# Hide the other spines...
for spine in ['right', 'top']:
ax.spines[spine].set_color('none')
#-- Decorate the spins
arrow_length = 20 # In points
# X-axis arrow
ax.annotate('X', xy=(1, 0), xycoords=('axes fraction', 'data'),
xytext=(arrow_length, 0), textcoords='offset points',
ha='left', va='center',
arrowprops=dict(arrowstyle='<|-', fc='black'))
# Y-axis arrow
ax.annotate('Y', xy=(0, 1), xycoords=('data', 'axes fraction'),
xytext=(0, arrow_length), textcoords='offset points',
ha='center', va='bottom',
arrowprops=dict(arrowstyle='<|-', fc='black'))
#-- Plot
ax.axis([-4, 10, -4, 10])
ax.grid()
plt.show()
少しだけ作業を追加するだけで (スパインの変換に直接アクセスする)、注釈の使用を一般化して、任意のタイプのスパインの位置合わせ (たとえば、「ドロップされた」スパインなど) を処理することができます。
いずれにせよ、それが少し役立つことを願っています。必要に応じて、より洗練されたものにすることもできます。