If we have a input of a dictionary with format {key: [list]} like below
List1: [value01, value02, value 03]
List2: [value02, value04, value 05]
List3: [value04, value05, value 07]
- The values are strings
Is there a way where we can group/cluster the keys (list names ) based on the similarity between it's values(lists) in python?
Thanks in advance!