当前位置:   article > 正文

python用line画直线_Python Matplotlib 线(Line)

plt line

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

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/代码探险家/article/detail/964984
推荐阅读
相关标签
  

闽ICP备14008679号