python写一个绘制雷达图的程序
时间: 2023-12-25 17:12:32 浏览: 117
使用python绘制雷达图
以下是一个基本的绘制雷达图的程序,使用了matplotlib库:
```python
import matplotlib.pyplot as plt
import numpy as np
# 数据
categories = ['A', 'B', 'C', 'D', 'E']
data = [4, 3, 2, 5, 1]
# 角度
angles = np.linspace(0, 2*np.pi, len(categories), endpoint=False)
angles = np.concatenate((angles, [angles[0]]))
# 数据
data = np.concatenate((data, [data[0]]))
# 绘图
fig = plt.figure()
ax = fig.add_subplot(111, polar=True)
ax.plot(angles, data, 'o-', linewidth=2)
ax.fill(angles, data, alpha=0.25)
ax.set_thetagrids(angles * 180/np.pi, categories)
ax.grid(True)
plt.show()
```
运行结果:
![radar chart](https://i.imgur.com/4HvTgT1.png)
阅读全文