内容正文:
MatPlotlib
关于matplotlib
matrix + plot + library
核心绘图库pyplot
其他子模块
figure
axes
pylab
3种绘图接口
pyplot
简单易用
面向"当前"图
axes
面向对象
丰富接口配置
pylab
沿用matlab风格
不建议使用
绘图3步走
创建画板
figure
axes
subplot
subplots
绘制图表
plot:折线图
scatter:散点图
bar/barh:条形图
hist:直方图
pie:饼图
imshow:图像
配置图例
title
axis/xlim/ylim
grid
legend
xlabel/ylabel
xticks/yticks
text/arrow/annotation
更高级的封装
pandas.plot
seaborn
ggplot
走向3D
contour/contourf
3D图表
自定义配置
rcParams:运行配置参数
style:风格
自定义子图
plt.axes
plt.subplot
plt.subplots
plt.GridSpec