aboutsummaryrefslogtreecommitdiff
path: root/source/testclusters.py
diff options
context:
space:
mode:
Diffstat (limited to 'source/testclusters.py')
-rw-r--r--source/testclusters.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/testclusters.py b/source/testclusters.py
index ea6406b1..a16d3492 100644
--- a/source/testclusters.py
+++ b/source/testclusters.py
@@ -2,14 +2,14 @@
import clusters
-K = 8
+K = 7
blognames,words,data = clusters.readfile("blogdata1.txt")
coords = clusters.scaledown(data)
print "Generating clusters..."
-kclust = clusters.kcluster(data, k=K)
+kclust = clusters.kcluster(data, k=K, distance=clusters.pearson)
print
print "Clusters:"
for i in range(K):
bgstack15