Re: [matplotlib-devel] Dendrogram
ynew=(y1+y2)/2.0 linelist.append((x1,y1,xnew,y1)) linelist.append((x2,y2,xnew,y2)) linelist.append((xnew,y1,xnew,y2)) if len(nstack)>0 and len(nstack[-1])<=1: dist=nstack.pop()[0] nstack.append( (xnew,ynew,dist) ) ret
[matplotlib-devel] Dendrogram
It appears matplotlib does not have a dendrogram plot. I may be interested in developing one, if I can get a sense for what it would take. Could someone suggest some code I could look at as a model for developing a new plot? Thanks, --Tim -