Skip to main content

All Questions

0 votes
1 answer
104 views

Issue with shading in Venn Diagram

I am using the matplotlib_venn library for creating the Venn diagram, and the shading issue seems to appear whenever I try to evaluate a complement of a set or expression. My code: import matplotlib....
mbmocls's user avatar
0 votes
1 answer
108 views

How to smooth Venn diagram edges

I have a Venn diagram created in Python but I don't know how to smooth all (also the internal ones) the edges. My code: import matplotlib.pyplot as plt from matplotlib_venn import venn3 from ...
maciejwww's user avatar
  • 1,156
0 votes
1 answer
295 views

Highlighting sectors of Venn diagram in Python

I am trying to create a program that would highlight a part of the Venn diagram, depending on user's input. The user would input a set operation and it would highlight the section. Currently, I am ...
Sam333's user avatar
  • 331
0 votes
0 answers
572 views

How to create a venn diagram with unlimited sets?

I have come across matplotlib_venn module which support 2-3 sets and venn module that can support up to 6 sets, is there a tool that supports an unlimited amount of sets? Can you somehow achieve that ...
Eliran Turgeman's user avatar
0 votes
0 answers
199 views

A Plot like PyLDAVis for Visualizing Common Words between Columns

I have a dataset where I have multiple text-type columns (150+), and I want to be able to visualize the common words between all of them, as well as their own separate words. I tried using venn-...
Ramsha Siddiqui's user avatar
3 votes
1 answer
2k views

How do you remove data labels in matplotlib_venn?

Not the text labels outside the circles, I can remove them by changing them to empty strings. I mean the actual numbers on the circles showing the value of each patch. I can't find how to remove ...
user43107's user avatar
  • 365
1 vote
1 answer
4k views

Python multiple venn diagram stacked in one image

I am using Venn diagram library from https://github.com/tctianchi/pyvenn I am trying to make 5 diagram, but they just stacked like in the picture. My code is pretty simple, just loop through the ...
Bharata's user avatar
  • 727
1 vote
1 answer
893 views

Creating Venn Diagrams with Categorical Data- matplotlib_venn

I'd like to use Python 3 to make a Venn diagram to show categorical data. If I do, say Rosy = ["chocolate", "chips", "cake", "sweets"] Steven = ["chocolate", "crisps", "nuggets"] venn2([set(...
Elly O's user avatar
  • 11
1 vote
2 answers
4k views

Increase venn diagram figure size with matplotlib_venn

I can't figure out how to increase the size of the venn diagram. I have some patches which are too small to fit the subset value label inside, and would therefore like to increase the overall figure ...
zagzig's user avatar
  • 69
3 votes
1 answer
3k views

Changing what is displayed inside a Venn diagram

I am using the Matplotlib_venn package to make a few Venn diagrams representing the overlaps of three different sets (hence using Venn3). When I use plt.show() and create the Venn diagram, the ...
user avatar
0 votes
1 answer
231 views

Venn Diagram with Textures using matplotlib

I am to creating venn diagram using matplotlib-venn. I am able to generate the graphs. Is there any possible way to create venn diagrams with textures like matplotlib bar-chart/pie-chart with textures?...
Ravin Sharma's user avatar
1 vote
2 answers
958 views

Subset Venn Diagrams - i.e. venn diagrams embedded in whole set

I'm comparing a set of tweets about a new fine implemented in London that is applied to heavily polluting vehicles. I want to compare how many tweets mention words related to traffic, and how many ...
Imran's user avatar
  • 31
3 votes
1 answer
21k views

Set multiple titles for a matplotlib subplot

I'm creating subplots of venn diagrams that are made via matplotlib_venn. Here is the plot I'm making: Notice the missing title on the top-right plot. This is because whenever I call ax.set_title, it'...
Daniel Himmelstein's user avatar
2 votes
0 answers
2k views

Making a list of lists into a Venn Diagram

I manipulated a pandas data frame in a way such that I have created a list of lists. For the sake of simplicity lets pretend it is a list of list of numbers (in reality they are strings). I would ...
Tank's user avatar
  • 521
3 votes
1 answer
5k views

Python: matplotlib-venn - How do you adjust the position / move the values inside the venn diagram circles?

Here's a sample venn diagram: from matplotlib import pyplot as plt import numpy as np from matplotlib_venn import venn3, venn3_circles plt.figure(figsize=(4,4)) vd = venn3(subsets=(1, 1, 1, 1, 1, 1, ...
Afflatus's user avatar
  • 2,422

15 30 50 per page