I know that for supervised classification one can use a confusion matrix to present the results. Is there an equivalent for this for clustering? And what's the best way to present clustering-unsupervised classification-results (k-means results for example)?
By presenting the clustering results I don't necessarily mean plots of scatter points but instead any representation: tables, schema, etc. that allows us to draw conclusions about the clustering performance.
To be more specific, I have to cluster electrical appliances. As a simple example, let's suppose I have a dataset of feature vectors $\mathbf{v}_i, i=1,\dots,N$ each extracted from a measurement (current signal) of a specific appliance. For example, we can imagine having appliances A, B and C, we measure 5 times each appliance and extract a feature vector from each measurement. This gives us a total of $N=15$ feature vectors.
Now, as a supervised classification problem, we can define the different appliance types (A, B and C) as classes, apply a supervised classification algo. and plot the confusion matrix or use any other metric to evaluate the classification accuracy. What I want is to apply a clustering algo. and present the results in the best way that will allow me to draw conclusions on the effectiveness of my clustering (maybe appliance A and B will be clustered together and I want to be able to say why is this right or wrong).