赞
踩
1、线(Line)
可以使用关键字参数linestyle或更短的ls来更改绘制线的样式:
例如:
使用虚线:import matplotlib.pyplot as plt
import numpy as np
ypoints = np.array([3, 8, 1, 10])
plt.plot(ypoints, linestyle = 'dotted')
plt.show()
Result:
例如:
使用虚线:plt.plot(ypoints, linestyle = 'dashed')
Result:
2、简写语法(Shorter Syntax)
线条样式可以用较短的语法编写:
linestyle可以写为ls。
dotted可以写为:。
dashed可以写为-。
例如:
Shorter syntax:plt.plot(ypoints, ls = ':')
Result:
3、线的样式(Line Styles)
可以选择以下任何一种样式:Style简写
'solid' (default)'-'
'dotted'':'
'dashe
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。