1.) This is the code for polar dendrogram:
X= rand(100,2);
Y= pdist(X,'cityblock');
Z= linkage(Y,'average');
dendrogram(Z,'colorthreshold','default');
But I want to do the labelling of my text.data file as shown in this question. I don't want numbering labels and want the text from my string file
Can we do the same labelling in case of polardendrogram
polardendrogram(Z,0,'colorthreshold','default');
zoom(0.8);
view(2);
if we have large data sets for rows labels ?