共计 548 个字符,预计需要花费 2 分钟才能阅读完成。
要使用 matplotlib 绘图,需要先安装 matplotlib 库。可以使用以下命令安装:
pip install matplotlib
安装完成后,可以根据需要选择合适的图形进行绘制。以下是几个常见的示例:
- 折线图:
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [1, 4, 9, 16, 25]
plt.plot(x, y)
plt.show()
- 散点图:
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [1, 4, 9, 16, 25]
plt.scatter(x, y)
plt.show()
- 条形图:
import matplotlib.pyplot as plt
x = ['A', 'B', 'C', 'D', 'E']
y = [10, 15, 7, 12, 9]
plt.bar(x, y)
plt.show()
- 饼图:
import matplotlib.pyplot as plt
x = [10, 15, 7, 12, 9]
labels = ['A', 'B', 'C', 'D', 'E']
plt.pie(x, labels=labels)
plt.show()
上述示例只是一些基本的绘图方法,matplotlib 还提供了更多的功能和选项,可以根据需要在官方文档中查找更多示例和用法。
丸趣 TV 网 – 提供最优质的资源集合!
正文完