Matplotlib(一) — 基础图表

目录

  1. 基础图表
  2. 线条样式或者标记样式
  3. 线条颜色

文档

Matplotlib官方文档


基础图表

由于代码库里面的调用方法很简单,也没有参数说明,所以在使用的时候,得参照官方文档

调用的方法: matplotlib.pyplot.plot(*args, **kwargs)

'''
调用的方法:matplotlib.pyplot.plot(*args, **kwargs)
**kwargs的常见参数有:
1. label:线条的名称
2. color or c:线的颜色
3. figure:a Figure instance
4. fillstyle:[‘full’ | ‘left’ | ‘right’ | ‘bottom’ | ‘top’ | ‘none’]
5. linestyle or ls:线的样式
6. linewidth or lw:线宽
7. ...
'''


#以下是官方文档的传参方式:
plot(x, y)        # plot x and y using default line style and color
plot(x, y, 'bo')  # plot x and y using blue circle markers
plot(y)           # plot y using x as index array 0..N-1
plot(y, 'r+')     # ditto, but with red plusses
import matplotlib.pyplot as plt

#第三个参数代表线条样式,第四个参数(label)属于**kwargs参数,代表线条的含义
plt.plot([1,2,3,4],[0,1,0,1,], '^', label='line1')
plt.plot([1,2,3,4],[1,2,1,2], '-', label='line2')
plt.plot([1,2,3,4],[2,3,2,3], 'o', label='line3')
plt.plot([1,2,3,4],[3,4,3,4], '--', label='line4')
plt.plot([1,2,3,4],[4,5,4,5], '*', label='line5')
#第三个参数'g-.',前者'g'代表颜色,'-.'代表线条的样式
plt.plot([1,2,3,4],[5,6,5,6], 'g-.', label='line6') 
plt.plot([1,2,3,4],[6,7,6,7], '_', label='line7')

#声明图标的名称
plt.title('Chart title')
#声明X轴的名称
plt.xlabel('The X_Axes desc')
#声明Y轴的名称
plt.ylabel('The Y_Axes desc')
#声明线条的名称
plt.legend()
#将图表显示出来
plt.show()

效果图:
这里写图片描述


线条样式或者标记样式

characterdescription
-solid line style
-’ dashed line style
-’ dash-dot line style
:dotted line style
.point marker
,pixel marker
ocircle marker
vtriangle_down marker
^triangle_up marker
<triangle_left marker
>triangle_right marker
1tri_down marker
2tri_up marker
3tri_left marker
4tri_right marker
ssquare marker
ppentagon marker
*star marker
hhexagon1 marker
Hhexagon2 marker
+plus marker
xx marker
Ddiamond marker
dthin_diamond marker
|vline marker
_hline marker

线条颜色

charactercolor
bblue
ggreen
rred
ccyan
mmagenta
yyellow
kblack
wwhite
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值