Add axis labels to the plot
Browse files
app.py
CHANGED
@@ -33,6 +33,8 @@ def get_clusters_plot(n_blobs, quantile, cluster_std):
|
|
33 |
markeredgecolor="k",
|
34 |
markersize=14,
|
35 |
)
|
|
|
|
|
36 |
|
37 |
plt.title(f"Estimated number of clusters: {n_clusters_}")
|
38 |
|
|
|
33 |
markeredgecolor="k",
|
34 |
markersize=14,
|
35 |
)
|
36 |
+
plt.xlabel("Feature 1")
|
37 |
+
plt.ylabel("Feature 2")
|
38 |
|
39 |
plt.title(f"Estimated number of clusters: {n_clusters_}")
|
40 |
|