gpt4 book ai didi

python - 如何为极坐标图 matplotlib 创建小刻度

转载 作者:太空宇宙 更新时间:2023-11-03 11:20:09 26 4
gpt4 key购买 nike

我对下面显示的 matplotlib 绘制的极坐标图的以下两件事感兴趣

  1. 如何在 r 轴上为极坐标图创建小刻度?
  2. 如何将 r 个标签移动到远离 r 个刻度的位置,如图所示,一些 r 个刻度与轴接触。

enter image description here

最佳答案

极坐标图没有次要或主要刻度。所以我认为你需要通过绘制小线段来手动创建小刻度。

例如:

import numpy as np
import matplotlib.pyplot as plt

r = np.arange(0, 2, 0.01)
theta = 2 * np.pi * r

ax = plt.subplot(111, projection='polar')
ax.plot(theta, r)
ax.set_rmax(2)
ax.margins(y=0)
ax.set_rticks([0.5, 1, 1.5, 2]) # less radial ticks
ax.set_rlabel_position(120) # get radial labels away from plotted line

ax.grid(True)

tick = [ax.get_rmax(),ax.get_rmax()*0.97]
for t in np.deg2rad(np.arange(0,360,5)):
ax.plot([t,t], tick, lw=0.72, color="k")

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

enter image description here

关于python - 如何为极坐标图 matplotlib 创建小刻度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44657003/

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