I am in need of some direction. I have a class in python that has an array of 40 attributes, if the attribute exists then that instance of the class get a 1 in that slot of its attributes array.
class.instance
attributes = [0,1,0...]
From what I've read if I wanted to create a hierarchical cluster I would need to use Jaccard distance because these are sets. I used:
scipy.spatial.distance.jaccard(instance1.attributes, instance2.attributes)
And got the distance between 100 different instances, so now I have a 100 x 100 matrix. Any suggestions on visualizing it?
Sorry if this makes little sense, or i'm not even close. I've been thrown in deep water here and am struggling to stay afloat.