matplotlib pyplot.plot()标记颜色

时间:2017-10-26 05:23:16

标签: python-3.x matplotlib

代码:

plt.plot(x,"g.")
plt.show()

生成: enter image description here

当我尝试以其他方式指定颜色时,会添加以下行:

plt.plot(x,"darkgreen",marker=".")
plt.show()

enter image description here

我不需要这些线条。如何在不添加线条的情况下使用单个字符代码之外的颜色?

1 个答案:

答案 0 :(得分:1)

linestyle设为"None"

plt.plot(x,color="darkgreen",marker=".", linestyle="None")