오른쪽의 matplotlib y 축 레이블


82

플롯의 오른쪽에 y 축 레이블을 배치하는 간단한 방법이 있습니까? 을 사용하여 눈금 레이블에 대해 수행 할 수 있다는 것을 알고 ax.yaxis.tick_right()있지만 축 레이블에 대해서도 수행 할 수 있는지 알고 싶습니다.

떠오른 한 가지 아이디어는

ax.yaxis.tick_right()
ax2 = ax.twinx()
ax2.set_ylabel('foo')

그러나 이것은 오른쪽에 모든 레이블 (틱 및 축 레이블)을 배치하는 동시에 y 축의 범위를 유지하는 원하는 효과가 없습니다. 간단히 말해, 모든 y 축 레이블을 왼쪽에서 오른쪽으로 이동하는 방법을 원합니다.

답변:


138

다음과 같이 할 수있는 것 같습니다.

ax.yaxis.set_label_position("right")
ax.yaxis.tick_right()

예를 보려면 여기 를 참조 하십시오 .


1
플롯 영역 내부 / 위에 레이블을 배치하려면 다음을 참조하십시오. stackoverflow.com/a/47874059/4933053
qrtLs

축의 그림이 아닌 범례에 대해서만 작동합니다. 이 문제를 해결할 아이디어가 있습니까?
Agape Gal'lo

Matplotlib에서이 두 가지를 모두 수행하는 단일 명령이 있습니까 아니면 불필요하게 장황합니까?
ifly6

하나 개 붙박이가있는 경우 @ 있는지,이 할 수 없음 ifly6 :rhs = lambda ax: (ax.yaxis.set_label_position("right"), ax.yaxis.tick_right())
아론

17

주어진 예제를 따르고 matplotlib축의 양쪽에 레이블이있는 그림을 만들고 싶지만 subplots()함수 를 사용할 필요가없는 경우 여기에 내 솔루션이 있습니다.

from matplotlib import pyplot as plt
import numpy as np

ax1 = plt.plot()
t = np.arange(0.01, 10.0, 0.01)
s1 = np.exp(t)
plt.plot(t,s1,'b-')
plt.xlabel('t (s)')
plt.ylabel('exp',color='b')

ax2 = ax1.twinx()
s2 = np.sin(2*np.pi*t)
ax2.plot(t, s2, 'r.')
plt.ylabel('sin', color='r')
plt.show()


1
이것은 나를 위해 작동하지 않습니다 File "prueba.py", line 11, in <module> ax2 = ax1.twinx() AttributeError: 'list' object has no attribute 'twinx'
하비에르 가르시아

4
plt.gca ()를 시도 twinx ().
아르네 Babenhauserheide

tryax1 = plt.subplot()
shoegazerstella

2

(문제를 되살려 서 죄송합니다)

나는 그것이 더러운 속임수라는 것을 알고 있지만, 축 처리로 내려가 plt명령을 유지하고 싶지 않다면 labelpad스칼라 인수를 사용 하여 레이블을 그래프 측면의 오른쪽에 배치 할 수 있습니다 . 약간의 시행 착오 후에 작동하며 정확한 스칼라 값 (?)은 그림 크기의 치수와 관련이 있습니다.

예:

# move ticks
plt.tick_params(axis='y', which='both', labelleft=False, labelright=True)

# move label
plt.ylabel('Your label here', labelpad=-725, fontsize=18)

1

이전 답변이 오래되었습니다. 위의 예에 대한 최신 코드는 다음과 같습니다.

import numpy as np
import matplotlib.pyplot as plt

t = np.arange(0.01, 10.0, 0.01)
data1 = np.exp(t)
data2 = np.sin(2 * np.pi * t)

fig, ax1 = plt.subplots()

color = 'tab:red'
ax1.set_xlabel('time (s)')
ax1.set_ylabel('exp', color=color)
ax1.plot(t, data1, color=color)
ax1.tick_params(axis='y', labelcolor=color)

ax2 = ax1.twinx()  # instantiate a second axes that shares the same x-axis

color = 'tab:blue'
ax2.set_ylabel('sin', color=color)  # we already handled the x-label with ax1
ax2.plot(t, data2, color=color)
ax2.tick_params(axis='y', labelcolor=color)

fig.tight_layout()  # otherwise the right y-label is slightly clipped
plt.show()

에서 여기 .

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.