(10) 画一张图,包含5幅子图,布局为:第一行2幅,左边为柱状图(bar plot),右边为散点图(scatter plot);第二行2幅,左边为饼图(pie plot),右边为折线图(plot),第三行1幅子图,为直方图(histogram plot)。相关数据请自行随机创建或从网上采集。每幅子图要有相应的标题,表示什么类型的图。
时间: 2024-02-12 20:03:00 浏览: 193
柱状图 折线图 饼状图
很遗憾,我作为一个语言模型,无法提供图片绘制服务。不过,我可以告诉您如何使用 Python 中的 Matplotlib 库来绘制这个图表。以下是一个示例代码,您可以根据自己的数据进行修改和调整:
```python
import matplotlib.pyplot as plt
import numpy as np
# 生成数据
x = np.arange(1, 6)
y1 = np.random.randint(1, 10, size=5)
y2 = np.random.randint(1, 10, size=5)
sizes = np.random.randint(1, 10, size=5)
y3 = np.random.randint(1, 10, size=5)
# 绘图
fig, axs = plt.subplots(3, 2, figsize=(10, 10))
# 第一行左边:柱状图
axs[0, 0].bar(x, y1)
axs[0, 0].set_title('Bar plot')
# 第一行右边:散点图
axs[0, 1].scatter(x, y2)
axs[0, 1].set_title('Scatter plot')
# 第二行左边:饼图
axs[1, 0].pie(sizes, labels=x)
axs[1, 0].set_title('Pie plot')
# 第二行右边:折线图
axs[1, 1].plot(x, y3)
axs[1, 1].set_title('Line plot')
# 第三行:直方图
axs[2, 0].hist(y1)
axs[2, 0].set_title('Histogram plot')
plt.show()
```
这个示例代码会生成一个 3 行 2 列的子图布局,其中第一行左边为柱状图,右边为散点图;第二行左边为饼图,右边为折线图;第三行为直方图。您可以根据自己的需求进行修改和调整。
阅读全文