cmpatino commited on
Commit
3dd7e72
1 Parent(s): 48ad3a5

Add axis labels to the plot

Browse files
Files changed (1) hide show
  1. app.py +2 -0
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