I make a big dendrogram using SciPy, and as a result of creating a dendrogram, the line thickness makes it difficult to see the details. I want to reduce the thickness of the line to make it easier to see, and more like MatLab. Any suggestions?
I do:
import scipy.cluster.hierarchy as hicl
from pylab import savefig
distance =
links = hicl.linkage(distance,method='average')
pden = hicl.dendrogram(links,color_threshold=optcutoff[0], ...
count_sort=True,no_labels=True)
savefig('foo.pdf')
And we get a result like this .
source
share