我可以在matplotlib plot函数中给一条线加边框(轮廓)吗?

2024-04-20 10:29:46 发布

您现在位置:Python中文网/ 问答频道 /正文

我试着:

points = [...]
axe.plot([i[0] for i in points], [i[1] for i in points], linestyle='-', linewidth=10, 
color='black', markeredgewidth=2, markeredgecolor='green')

但我只是得到了一个黑色的轮廓。我怎样才能达到下图所示的效果? black line with green border


Tags: inforplotgreenpointscolor轮廓black
3条回答

如果你画两次线,它就不会出现在传说中。使用patheffects确实更好。下面是两个简单的例子:

import matplotlib.pyplot as plt
import numpy as np
import matplotlib.patheffects as pe

# setup data
x = np.arange(0.0, 1.0, 0.01)
y = np.sin(2*2*np.pi*t)

# create line plot including an outline (stroke) using path_effects
plt.plot(x, y, color='k', lw=2, path_effects=[pe.Stroke(linewidth=5, foreground='g'), pe.Normal()])
# custom plot settings
plt.grid(True)
plt.ylim((-2, 2))
plt.legend(['sine'])
plt.show()

enter image description here

或者如果你想添加线阴影

# create line plot including an simple line shadow using path_effects
plt.plot(x, y, color='k', lw=2, path_effects=[pe.SimpleLineShadow(shadow_color='g'), pe.Normal()])
# custom plot settings
plt.grid(True)
plt.ylim((-2, 2))
plt.legend(['sine'])
plt.show()

enter image description here

更一般的答案是使用patheffects。为任何使用路径渲染的艺术家提供简单的轮廓和阴影(以及其他东西)。
matplotlib文档(和示例)非常容易访问。

http://matplotlib.org/users/patheffects_guide.html

http://matplotlib.org/examples/pylab_examples/patheffect_demo.html

只需绘制两次不同厚度的线:

axe.plot([i[0] for i in points], [i[1] for i in points], linestyle='-', linewidth=10, 
color='green')
axe.plot([i[0] for i in points], [i[1] for i in points], linestyle='-', linewidth=5, 
color='black')

相关问题 更多 >