Skip to content

Commit 14cbf98

Browse files
committed
fix typo in kmeans docstring
1 parent e3cf3ff commit 14cbf98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/kmeans.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ km_yy = kmeans(Yinyang(), X, 5) # 5 clusters with the Yinyang algo
182182
183183
kma = km.assignments # X[:,i] is a member of cluster kma[i]
184184
kmc = km.centers # cluster i has center kmc[:,i]
185-
kmn = km.counts # clister i has kmn[i] points
185+
kmn = km.counts # cluster i has kmn[i] points
186186
```
187187
"""
188188
function kmeans(alg::AbstractKMeansAlg, design_matrix, k;

0 commit comments

Comments
 (0)