I have a 2D binary array (size 1445 by 120), which I have clustered into 10 clusters using Python's AgglomerativeClustering method. Each of the 1445 samples is given a cluster index of a number from 0-9.
My question is this: Is there a way to visualize these clusters in a 2D space, so that it looks something like this?: http://scikit-learn.org/stable/_images/sphx_glr_plot_digits_linkage_001.png. I'm having trouble thinking of a way to map 2D binary data into coordinates. The data is very sparse and only ~5% are 1s, the rest are 0s. Any thoughts?