小伤口 发表于 2021-7-27 19:05:04

快速上手 Matplotlib 系列: (1)

本帖最后由 小伤口 于 2021-8-14 02:29 编辑

快速上手 Matplotlib 系列: (1)

Matplotlib 介绍

Matplotlib 是一款 python 2D 绘图库,用来数据可视化。{:10_259:}

柱状图、点线图、直方图、饼图、堆积柱状图、填充直方图、直方散点图等等,都可以绘制{:10_330:}

尽管它起源于模拟 Matlab 但是 Matplotlib

完全开源免费,又是python的拓展库,代码简洁优美{:10_275:}

示例:







Matplotlib 安装

python -m pip install matplotlib

绘制一个简单的折线图{:10_332:}

代码:


import matplotlib.pyplot as plt

plt.figure(figsize=(10,8),dpi=100)

plt.plot(,)

plt.show()



代码讲解放到下次再说~{:10_264:}




我们下个帖子再会~

{:10_307:}

fish_nian 发表于 2021-7-27 19:32:49

{:10_275:}太行了

hrpzcf 发表于 2021-9-17 21:00:32

马克学习

hornwong 发表于 2021-12-7 22:32:02

{:5_95:}

Python初学者8号 发表于 2021-12-8 08:47:18

坐等更新

1406598279 发表于 2022-8-14 14:48:52

我正愁没有快速上手matplotlib模块的教程呢!!!嘻嘻
求速更

hornwong 发表于 2022-8-18 19:04:25

{:5_108:}
页: [1]
查看完整版本: 快速上手 Matplotlib 系列: (1)