1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
# A tiny analysis script to demonstrate duecredit
#
# Import of duecredit is not necessary if you just run this script with
# python -m duecredit
# import duecredit # Just to enable duecredit
from scipy.cluster.hierarchy import linkage
from scipy.spatial.distance import pdist
from sklearn.datasets import make_blobs
print("I: Simulating 4 blobs")
data, true_label = make_blobs(centers=4)
dist = pdist(data, metric="euclidean")
Z = linkage(dist, method="single")
print("I: Done clustering 4 blobs")
|