Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Alternative to venn diagram [closed]

Is there a visualization format that shows overlapping proportion of categories in data, but more precise than venn diagram? Also venn diagram is typically used to show 2 or 3 categories, more than that it gets confusing.

Stacked bar, waterfall etc could show proportion per categories, but assuming no overlapping between these categories.

So for overlapping categories, what's the best way to show their proportion, including the proportion that overlaps with another category?

like image 479
santoku Avatar asked Dec 24 '22 05:12

santoku


2 Answers

You should check UpSet. They also have an R package ( UpsetR ) and the web version here.

Really cool tool!

The idea is that the relations are sorted as you wish ( i.e. by the number of elements ) in the bottom panel and then in the top panel you see the actual numbers in a bar plot. I think it's really useful to focus the attention on the important things in

like image 151
David Mas Avatar answered Jan 30 '23 20:01

David Mas


What I initially described as an oriented graph with inclusion relashionship has a more precise scientific name, it's called a Hasse diagram.

A Hasse diagram is used to represent a partially ordered set elements and their combinaisons. In your application, that would be categories and their intersections.

Depending of your audience (academic, professional etc.), you may use it as is or use it as inspiration to make a custom data visualisation.

like image 22
Arthur Hv Avatar answered Jan 30 '23 21:01

Arthur Hv