Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
反対の軸にimshowで作成された図のyticklabelsをプロットしようとしています。また、この軸を制御するために必要なティックラベルを設定する必要があります。誰かがこれを行う方法を知っていますか?
前もって感謝します。
これを試して:
import matplotlib.pyplot as plt ax = plt.subplot(111) plt.imshow(...) ax.yaxis.set_tick_params(labelright=True, labelleft=False)