There is an example from the SAS Documentation of PROC CLUSTER
that performs cluster analysis on Iris dataset:
proc cluster data=iris method=ward print=15 ccc pseudo;
var petal: sepal:;
copy species;
run;
proc tree noprint ncl=3 out=out;
copy petal: sepal: species;
run;
From PROC FREQ we can see that there has been 16 misclassifications:
proc freq;
tables cluster*species / nopercent norow nocol plot=none;
run;
How can I get plots of all pairwise projections of variables (6 in total) where cluster membership is indicated by different colors and highlight all misclassifications with a separate color or other marker shape?
I know that scatter plot can be obtained with PROC SGPLOT but I can't highlight misclassified observations.