001.matplotlib.pyplot入门
Posted TommyLiuZ
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了001.matplotlib.pyplot入门相关的知识,希望对你有一定的参考价值。
001.matplotlib.pyplot入门
1.简单程序
- 画图plot方法
- 显示图片show方法
2.画多张图
3.figure函数
**matplotlib.pyplot.figure(num=None, figsize=None, dpi=None, facecolor=None, edgecolor=None, frameon=True, FigureClass=<class ‘matplotlib.figure.Figure’>, clear=False, kwargs)
- num: 图的identifier,是唯一的(str或者int类型)
- figsize(float, float): Width, height in inches.
- facecolor:The background color.
- edgecolor: The border color.
4.plot函数
4.1 常用的形式
# 一个figure里面一条线
plot([x], y, [fmt], *, data=None, **kwarg)
# 一个figure里面多条线
plot([x], y, [fmt], [x2], y2, [fmt2], ..., **kwarg)
[fmt]指的是线条的格式:[颜色,点型,线型]
4.2 其他参数
- linewidth = 2 线宽
- markersize = 12 点宽
- label = ‘line1’ 线的标签,但是不会在图中显示
点型
以上是关于001.matplotlib.pyplot入门的主要内容,如果未能解决你的问题,请参考以下文章