Ben Burtenshaw
commited on
Commit
Β·
66d0cd2
1
Parent(s):
51ba8ce
remove plot title
Browse files
app.py
CHANGED
@@ -127,13 +127,6 @@ def main(
|
|
127 |
ax2.set_title("The visualization of the clustered data.")
|
128 |
ax2.set_xlabel("Feature space for the 1st feature")
|
129 |
ax2.set_ylabel("Feature space for the 2nd feature")
|
130 |
-
|
131 |
-
plt.suptitle(
|
132 |
-
"Silhouette analysis for KMeans clustering on sample data with n_clusters = %d"
|
133 |
-
% n_clusters,
|
134 |
-
fontsize=14,
|
135 |
-
fontweight="bold",
|
136 |
-
)
|
137 |
return fig1, fig2
|
138 |
|
139 |
title = '''# Selecting the number of clusters with silhouette analysis on KMeans clustering π'''
|
|
|
127 |
ax2.set_title("The visualization of the clustered data.")
|
128 |
ax2.set_xlabel("Feature space for the 1st feature")
|
129 |
ax2.set_ylabel("Feature space for the 2nd feature")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
130 |
return fig1, fig2
|
131 |
|
132 |
title = '''# Selecting the number of clusters with silhouette analysis on KMeans clustering π'''
|