gpt4 book ai didi

matplotlib - 从 matplotlib 中的 PolyCollection 中删除边缘线

转载 作者:行者123 更新时间:2023-12-01 23:47:38 26 4
gpt4 key购买 nike

enter image description here我正在用如下一行绘制一些数据:
poly = PolyCollection(vertices, array=s, edgecolors='w', linewidths=.0001)
有没有办法完全隐藏每个单元格周围的边缘线?上面的代码尝试通过将边缘颜色设置为白色和较小的线宽来做到这一点。但是,线条仍然出现。此外,将 0 传递给线宽似乎也没有做到这一点。

我也试过设置 edgecolornonelinewidth到 0 没有成功。

有什么建议?

最佳答案

有多种方法可以隐藏边缘。感谢 阿让 评论中的其他建议。

import numpy as np
import matplotlib.pyplot as plt
import matplotlib as mpl

vertices = [
[(0.2,0.2), (0.7,0.3), (0.1, 0.6)],
[(0.5,0.5), (0.6 ,0.8), (0.8, 0.6)]
]

poly0 = mpl.collections.PolyCollection(vertices)
poly1 = mpl.collections.PolyCollection(vertices, edgecolor="none")
poly2 = mpl.collections.PolyCollection(vertices, linewidths=0)
poly3 = mpl.collections.PolyCollection(vertices, color="blue")

fig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(2, 2, figsize=(10,10))
ax1.add_collection(poly0)
ax2.add_collection(poly1)
ax3.add_collection(poly2)
ax4.add_collection(poly3)

plot

关于matplotlib - 从 matplotlib 中的 PolyCollection 中删除边缘线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28281819/

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