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 like to create some sort of visualisation preferably a venn diagram which shows me the overlap between lists. In other words some of the list are subsets of others etc.
for example if the list of lists was
a = [[1,2,3,4,5],[1,2,3],[8,9],[6,7],[5,6]]
this list would return a a venn diagram with one circle within a circle. one circle intersecting that larger circle. and one circle completely alone.
I have tried to use matplotlib_venn but to little avail any ideas on how i should proceed?