gpt4 book ai didi

python-3.x - 制作不同颜色的线图标记

转载 作者:行者123 更新时间:2023-12-03 23:08:28 24 4
gpt4 key购买 nike

我想在线图中标记某些索引。我已经提到了following question在堆栈溢出并写入以下内容:

plt.plot(range(len(y)), y, '-bD', markevery=rare_cases, label='%s' % target_var_name)

但是,这会产生以下结果:
enter image description here

如何将线图保持为蓝色,但将标记设为红色?

最佳答案

来自 documentation of plt.plot :

matplotlib.pyplot.plot(*args, scalex=True, scaley=True, data=None, **kwargs)
该函数需要 **kwargs :

**kwargsLine2D properties, optional kwargs are used to specify properties like a line label (for auto legends), line-width, antialiasing, marker face color[...]Here is a list of available Line2D properties:[...]

markeredgecolor机电 颜色 markeredgewidth漂浮 markerfacecolor mfc 颜色 markerfacecoloralt mfcalt 颜色
所以,你可以喂 markerfacecolormarkeredgecolor作为关键字参数:
x = np.random.randint(0,10,5)
y = np.random.randint(0,10,5)

plt.plot(x, y, '-bD', c='blue', mfc='red', mec='k')
enter image description here

关于python-3.x - 制作不同颜色的线图标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60691464/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com