pyplot.plot() 参数

2021/12/9 23:46:56

本文主要是介绍pyplot.plot() 参数,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

plot函数一般的调用形式

#单条线:
plot(x, y, [fmt], data=None, **kwargs)

#多条线
plot(x, y, [fmt], x2, y2, [fmt2], ..., **kwargs)

可选参数[fmt] 是一个字符串来定义图的基本属性如:颜色(color)、点型(marker)、线型(linestyle),具体形式 fmt = '[color][marker][line]'

fmt接收的是每个属性的单个字母缩写,例如:

import matplotlib.pyplot as plt

plt.plot(x, y, 'bo-')  # 蓝色圆点实线

属性用的是全名则不能用 [fmt] 参数来组合赋值,应该用关键字参数对单个属性赋值如:

import matplotlib.pyplot as plt

plt.plot(x, y, color='green', marker='o', linestyle='dashed', linewidth=2, markersize=10)

plt.plot(x, y, color='#008000', marker='=', linestyle='-')

color 可以使用十六进制字符串("# 008000"),也可以用以下字符表示:

'b'蓝色
'g'绿色
'r'红色
'c'青色
'm'品红
'y'黄色
'k'黑色
'w'白色

marker参数可以使用以下的字符串

'-'solid line style
'--'dashed line style
'-.'dash-dot line style
':'dotted line style
'.'point marker
','pixel marker
'o'circle marker
'v'triangle_down marker
'^'triangle_up marker
'<'triangle_left marker
'>'triangle_right marker
'1'tri_down marker
'2'tri_up marker
'3'tri_left marker
'4'tri_right marker
's'square marker
'p'pentagon marker
'*'star marker
'h'hexagon1 marker
'H'hexagon2 marker
'+'plus marker
'x'x marker
'D'diamond marker
'd'thin_diamond marker
'|'vline marker
'_'hline marker

线性参数 linestyle

'-'solid  实线
'--'dashed  虚线
'-.'dash-dot  点画线
':'dotted  点线



这篇关于pyplot.plot() 参数的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程