作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在线图中标记某些索引。我已经提到了following question在堆栈溢出并写入以下内容:
plt.plot(range(len(y)), y, '-bD', markevery=rare_cases, label='%s' % target_var_name)
最佳答案
来自 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 颜色
markerfacecolor
和
markeredgecolor
作为关键字参数:
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')
关于python-3.x - 制作不同颜色的线图标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60691464/
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引起辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the he
我是一名优秀的程序员,十分优秀!