sdbrgo commited on
Commit
e1411c7
·
verified ·
1 Parent(s): d65cd27

Update cluster_ops/clustering.py

Browse files
Files changed (1) hide show
  1. cluster_ops/clustering.py +2 -2
cluster_ops/clustering.py CHANGED
@@ -111,13 +111,13 @@ def explore_clusters(file):
111
  }
112
 
113
  # --- visualization ---
114
- fig, ax = plt.subplots(figsize=(10, 8))
115
 
116
  ax.scatter(
117
  X_umap[:, 0],
118
  X_umap[:, 1],
119
  c=labels_hdb,
120
- s=8,
121
  alpha=0.8
122
  )
123
 
 
111
  }
112
 
113
  # --- visualization ---
114
+ fig, ax = plt.subplots(figsize=(7, 5))
115
 
116
  ax.scatter(
117
  X_umap[:, 0],
118
  X_umap[:, 1],
119
  c=labels_hdb,
120
+ s=5,
121
  alpha=0.8
122
  )
123