Matplotlib:Python可视化
Matplotlib是一个用于在Python中创建静态、动画和交互式可视化的综合库。Matplotlib让简单的事情变得容易,让困难的事情变得可能。
● 创建出版物质量图。
● 制作可以缩放、平移和更新的交互式图形。
● 自定义视觉样式和布局。
● 导出为多种文件格式。
● 嵌入JupyterLab和图形用户界面。
● 基于Matplotlib构建的丰富的第三方软件包。
安装
通过pip:
·
pip install matplotlib
通过conda:
·
conda install matplotlib
《安装指南》中提供了更多详细信息:https://matplotlib.org/stable/users/installing/index.html。
绘制第一个图表
下面是一个小例子:
·
·
·
·
·
·
·
·
·
import matplotlib.pyplot as pltimport 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()
如果未显示绘图,请检查故障并排除:https://matplotlib.org/stable/users/faq/troubleshooting_faq.html#troubleshooting-faq。