在matplotlib中使用dashes关键字参数设置实线?

时间:2014-07-17 22:42:45

标签: python matplotlib

我一直在使用dashes关键字在Matplotlib中设置自定义线条样式。设置代表不同线条样式的元组列表很方便,

ds = [(4,2,4,2), (16,4,16,4)]
plt.plot( x, y, dashes=ds[0] )
例如,

。我想设置一些元组,当使用dashes关键字传递给绘图命令时会产生实线。我在网上搜索过,但只发现了各种定义虚线和虚线的方法。这可能吗?

1 个答案:

答案 0 :(得分:0)

实线为dashes=''(空字符串)。

作为一个简单的例子:

import matplotlib.pyplot as plt

plt.plot(range(10), dashes='')
plt.show()

enter image description here