Closed aldantas closed 6 years ago
What's the problem with
venn3_circles((1,1,1,1,1,1,1))
? It provides exactly the same circles as
venn3_unweighted(...)
(with default subset_areas
, which happen to be (1,1,1,1,1,1,1)).
After all, given that venn3_circles
does not produce any actual labels for the diagrams, there is no point to differentiate between "weighted" and "unweighted" here. "Unweighted" is just one possible option for area sizes (i.e. one type of weighting).
Yes, you are correct, thank you!
This is way simpler and was right in front of my nose hahahaha.
I got confuse because in my real case I was using sets of data to draw the diagram. That's why I thought that there could be an wraper for drawing the unweighted circles. But indeed, it is not needed, but perhaps this use case could me mentioned in the README.
Is it possible to implement a function for drawing the circles of unweighted diagrams? I've tried to tweak the
venn3_circle
function using a (1,1,1,1,1,1,1) tuple for the areas, like the unweighted wrap functions do, but it didn't work.