使用 matplotlib画出数据仪表盘尽可能包含饼图、折线图、条形图、直方图等图
时间: 2023-07-10 11:09:52 浏览: 102
好的,我可以给你提供一个示例代码,你可以根据自己的数据进行修改。
```python
import matplotlib.pyplot as plt
import numpy as np
# 数据
labels = ['A', 'B', 'C', 'D']
sizes = [15, 30, 45, 10]
x = np.arange(0, 10, 0.1)
y1 = np.sin(x)
y2 = np.cos(x)
y3 = np.tan(x)
y4 = np.exp(x)
# 创建子图
fig, axs = plt.subplots(2, 2, figsize=(10, 10))
# 饼图
axs[0, 0].pie(sizes, labels=labels, autopct='%1.1f%%', startangle=90)
axs[0, 0].set_title('Pie Chart')
# 折线图
axs[0, 1].plot(x, y1, label='sin')
axs[0, 1].plot(x, y2, label='cos')
axs[0, 1].plot(x, y3, label='tan')
axs[0, 1].legend()
axs[0, 1].set_title('Line Chart')
# 条形图
axs[1, 0].bar(labels, sizes)
axs[1, 0].set_title('Bar Chart')
# 直方图
axs[1, 1].hist(y4, bins=20)
axs[1, 1].set_title('Histogram')
plt.show()
```
这段代码会生成一个包含饼图、折线图、条形图和直方图的数据仪表盘。你可以根据自己的需要进行修改和调整。
阅读全文