入门#

安装快速入门#

使用 pip 安装

pip install matplotlib

使用 conda 安装

conda install -c conda-forge matplotlib

更多详细信息请参见 安装指南.

绘制第一个绘图#

这是一个最小的示例绘图

import matplotlib.pyplot as plt
import numpy as np

x = np.linspace(0, 2 * np.pi, 200)
y = np.sin(x)

fig, ax = plt.subplots()
ax.plot(x, y)
plt.show()

(源代码, 2x.png, png)

如果绘图没有显示,请查看 故障排除.

下一步去哪里#