Mercurial > repos > chemteam > biomd_neqgamma
comparison rmsd_clustering.py @ 1:afcb925def69 draft default tip
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit f1c3c88c7395f2e84cbc533199406aadb79c5c07"
author | chemteam |
---|---|
date | Fri, 13 Nov 2020 19:38:28 +0000 |
parents | 4f3222cb5cf6 |
children |
comparison
equal
deleted
inserted
replaced
0:4f3222cb5cf6 | 1:afcb925def69 |
---|---|
46 plt.draw() | 46 plt.draw() |
47 plt.savefig(output, format='png') | 47 plt.savefig(output, format='png') |
48 | 48 |
49 | 49 |
50 def plot_dendrogram(Z, output): | 50 def plot_dendrogram(Z, output): |
51 plt.figure(figsize=(25, 10)) | 51 # figure width scales with number of leaves |
52 plt.figure(figsize=(0.25 * Z.shape[0], 10)) | |
52 plt.title('Hierarchical Clustering Dendrogram') | 53 plt.title('Hierarchical Clustering Dendrogram') |
53 plt.xlabel('Trajectory index') | 54 plt.xlabel('Trajectory index') |
54 plt.ylabel('distance') | 55 plt.ylabel('distance') |
55 dendrogram( | 56 dendrogram( |
56 Z, | 57 Z, |