为什么matplotlib.PatchCollection会弄乱补丁的颜色?

时间:2013-01-24 01:06:14

标签: python colors matplotlib patch

我制作了许多补丁 -

node.shape = RegularPolygon((node.posX, node.posY),
                            6,
                radius = node.radius,
                                    edgecolor = 'none',
                                    facecolor = node.fillColor,
                                    zorder = node.zorder)

node.brushShape = RegularPolygon((node.posX, node.posY),
                            6,
                node.radius * 0.8,
                linewidth = 3,
                                    edgecolor = (1,1,1),
                                    facecolor = 'none',
                                    zorder = node.zorder)

最初我只是把它们直接放在我的轴上 -

self.plotAxes.add_artist(node.shape)
self.plotAxes.add_artist(node.brushShape)

工作得很好。但是现在我想将它们放入PatchCollection并将PatchCollection放到轴上。然而,当我这样做时,我的所有形状都只是蓝色。我不明白只是投入一个集合是如何以某种方式改变颜色。任何人都可以帮我解决我需要做的事情,以保持我输入的颜色值作为补丁的faceColor吗?

新代码是 -

node.shape = RegularPolygon((node.posX, node.posY),
                        6,
            radius = node.radius,
                                edgecolor = 'none',
                                facecolor = node.fillColor,
                                zorder = node.zorder)

node.brushShape = RegularPolygon((node.posX, node.posY),
                        6,
            node.radius * 0.8,
            linewidth = 3,
                                edgecolor = (1,1,1),
                                facecolor = 'none',
                                zorder = node.zorder)

self.patches.append(node.shape)
self.patches.append(node.brushShape)


self.p = PatchCollection(self.patches) 
self.plotAxes.add_collection(self.p) 

1 个答案:

答案 0 :(得分:16)

self.p = PatchCollection(self.patches, match_original=True) 

默认情况下,补丁集会覆盖给定的颜色(doc),以便能够应用颜色贴图,循环颜色等。这是一个collection级别的功能(以及为散点图背后的代码提供动力。)