gpt4 book ai didi

python - 在极坐标图中移动偏移文本位置

转载 作者:太空宇宙 更新时间:2023-11-03 16:55:43 27 4
gpt4 key购买 nike

我想更改偏移文本的位置(参见附图)。

Change Position of 'Scientific scale'-tick

有没有办法在 matplotlib 中做到这一点?

我的代码:

"""
Demo of a line plot on a polar axis.
"""
import numpy as np
import matplotlib.pyplot as plt


r = np.arange(0, 3.0, 0.01)
theta = 2 * np.pi * r
r = r*1000000000
ax = plt.subplot(111, projection='polar')
ax.plot(theta, r, color='b', linewidth=3)

ax.grid(True)

ax.set_title("A line plot on a polar axis", va='bottom')
plt.show()

最佳答案

文本对象称为offset_text。在极坐标图中,它被视为 y 轴的偏移文本。您可以使用 ax.yaxis.set_offset_position() 函数移动它。这只需要 leftright 作为选项。因此,添加 ax.yaxis.set_offset_position('right') 会将其移近您想要的位置:

enter image description here

<小时/>

根据请求,完整脚本中的该行如下:

import numpy as np
import matplotlib.pyplot as plt


r = np.arange(0, 3.0, 0.01)
theta = 2 * np.pi * r
r = r*1000000000
ax = plt.subplot(111, projection='polar')
ax.plot(theta, r, color='b', linewidth=3)

ax.grid(True)

ax.yaxis.set_offset_position('right')

plt.show()

关于python - 在极坐标图中移动偏移文本位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35436844/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com