python matplotlib - 基本使用说明
官方网址:https://matplotlib.org/stable/index.html
官方示例:https://matplotlib.org/stable/gallery/index.html
程序安装:(-U 安装最新版)
python -m pip install -U matplotlib
1.面板和子图的创建
方式一:先创建窗口,再创建子图
import matplotlib.pyplot as plt
fig01 = plt.figure(figsize=(16, 8), dpi=80.
原创
2021-05-08 17:56:02 ·
302 阅读 ·
0 评论