如何将轴标签更改为 pi 的倍数

How to change axes labels to multiples of pi

我正在显示已转换为极坐标的数据点的分布,并使用直方图显示点的分布。如何将 x 轴更改为 pi 的倍数?

import numpy as np
import matplotlib.pyplot as plt


Phi_coords = []

# Extracting phi values from polars
for i in range(len(test_polars)):
    Phi_coords.append(test_polars[i][1])

    
# matplotlib histogram
plt.hist(Phi_coords, color = 'blue', edgecolor = 'black', bins = 360)


# Add labels
plt.title('Distribution')
plt.xlabel('Phi Coordinate')
plt.ylabel('Number at Phi Coordinate')

需要添加:

pi = np.pi

plt.xticks(np.arange(-pi, pi+pi/2, step=(pi/2)), ['-π','-π/2','0','π/2','π'])