我正在使用SciPy製作一個大型樹狀圖,並且在得到的樹狀圖中,線條粗細使得難以看清細節。我想減小線條粗細,以便更容易看到和更多MatLab。有什麼建議麼?使用SciPy樹狀圖,我可以更改線寬嗎?
我做:
import scipy.cluster.hierarchy as hicl
from pylab import savefig
distance = #distance matrix
links = hicl.linkage(distance,method='average')
pden = hicl.dendrogram(links,color_threshold=optcutoff[0], ...
count_sort=True,no_labels=True)
savefig('foo.pdf')
而且越來越像this結果。
可以這樣做,而不是從import pyplot中單獨導入matplotlib? –
寬度單位是多少?它是像素還是點? – Sigur