Skip to content

Commit a309080

Browse files
committed
Modify function name
1 parent fa5d8fd commit a309080

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

python/Clustering/HierarchicalClustering.py

+13-13
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# @Author: WuLC
33
# @Date: 2017-02-12 15:41:09
44
# @Last Modified by: WuLC
5-
# @Last Modified time: 2017-02-14 23:05:08
5+
# @Last Modified time: 2017-02-15 22:08:57
66

77
from GetData import read_data
88
from math import sqrt
@@ -92,26 +92,26 @@ def print_cluster(cluster, blog_names, n):
9292
print blog_names[cluster.id]
9393

9494

95-
def getheight(cluster):
95+
def get_height(cluster):
9696
if cluster.left==None and cluster.right==None: return 1
9797
# Otherwise the height is the same of the heights of
9898
# each branch
99-
return getheight(cluster.left)+getheight(cluster.right)
99+
return get_height(cluster.left)+get_height(cluster.right)
100100

101101

102-
def getdepth(cluster):
102+
def get_depth(cluster):
103103
# The distance of an endpoint is 0.0
104104
if cluster.left==None and cluster.right==None: return 0
105105

106106
# The distance of a branch is the greater of its two sides
107107
# plus its own distance
108-
return max(getdepth(cluster.left),getdepth(cluster.right))+cluster.distance
108+
return max(get_depth(cluster.left),get_depth(cluster.right))+cluster.distance
109109

110110

111-
def drawnode(draw,cluster,x,y,scaling,blog_names):
111+
def draw_node(draw,cluster,x,y,scaling,blog_names):
112112
if cluster.id < 0:
113-
h1=getheight(cluster.left)*20
114-
h2=getheight(cluster.right)*20
113+
h1=get_height(cluster.left)*20
114+
h2=get_height(cluster.right)*20
115115
top=y-(h1+h2)/2
116116
bottom=y+(h1+h2)/2
117117
# Line length
@@ -126,18 +126,18 @@ def drawnode(draw,cluster,x,y,scaling,blog_names):
126126
draw.line((x,bottom-h2/2,x+ll,bottom-h2/2),fill=(255,0,0))
127127

128128
# Call the function to draw the left and right nodes
129-
drawnode(draw,cluster.left,x+ll,top+h1/2,scaling,blog_names)
130-
drawnode(draw,cluster.right,x+ll,bottom-h2/2,scaling,blog_names)
129+
draw_node(draw,cluster.left,x+ll,top+h1/2,scaling,blog_names)
130+
draw_node(draw,cluster.right,x+ll,bottom-h2/2,scaling,blog_names)
131131
else:
132132
# If this is an endpoint, draw the item label
133133
draw.text((x+5,y-7),blog_names[cluster.id],(0,0,0))
134134

135135

136136
def draw_cluster(cluster, blog_names, jpeg_path):
137137
# height and width
138-
h=getheight(cluster)*20
138+
h=get_height(cluster)*20
139139
w=1200
140-
depth=getdepth(cluster)
140+
depth=get_depth(cluster)
141141

142142
# width is fixed, so scale distances accordingly
143143
scaling=float(w-150)/depth
@@ -149,7 +149,7 @@ def draw_cluster(cluster, blog_names, jpeg_path):
149149
draw.line((0,h/2,10,h/2),fill=(255,0,0))
150150

151151
# Draw the first node
152-
drawnode(draw,cluster,10,(h/2),scaling,blog_names)
152+
draw_node(draw,cluster,10,h/2,scaling,blog_names)
153153
img.save(jpeg_path,'JPEG')
154154

155155

0 commit comments

Comments
 (0)