在matplotlib-venn中将标记点添加到维恩图中

时间:2014-06-17 01:16:14

标签: python matplotlib scipy venn-diagram matplotlib-venn

说,我正在使用python和matplotlib-venn包来创建一些维恩图。但是,我想在其中一个圆圈中包含一个标记点​​。这样我就可以证明点x是集A的元素。有没有办法简单地在matplotlib-venn中添加一个点?

编辑:我添加了一张图片进行演示。

enter image description here

最小工作示例:

这段代码只会创建维恩图但没有点

from matplotlib import pyplot as plt
import numpy as np
from matplotlib_venn import venn2
plt.figure(figsize=(4,4))
v = venn2(subsets = (3, 2, 1))
plt.show()

1 个答案:

答案 0 :(得分:1)

维恩图以x为中心,y = 0,0。只需将您的点绘制在所需的x,y。

from matplotlib import pyplot as plt
from matplotlib_venn import venn2
plt.figure(figsize=(4,4))
v = venn2(subsets = (3, 2, 1))

plt.axhline(0, linestyle='--')
plt.axvline(0, linestyle='--')

plt.plot(-0.5,0.2,'bo')
plt.text(-0.6,0.2, 'A')

plt.show()