I would like to plot a scatter graph to visually represent data points in the form (string, string). Where each coordinate is a string taken from a given set of String values, a set for the X axis and one for the Y axis. I'm having trouble finding a library -possibly python- which allows the representation of only categorical data (no numeric values).
I have tried with Seaborn swarmplot but it seems at least one coordinate must be numeric.
I know points with the same two coordinates would collide, and i was hoping to find a library which represented those points as adjacent (cluster like).
Thanks.
