Update cluster_ops/clustering.py
Browse files
cluster_ops/clustering.py
CHANGED
|
@@ -111,13 +111,13 @@ def explore_clusters(file):
|
|
| 111 |
}
|
| 112 |
|
| 113 |
# --- visualization ---
|
| 114 |
-
fig, ax = plt.subplots(figsize=(
|
| 115 |
|
| 116 |
ax.scatter(
|
| 117 |
X_umap[:, 0],
|
| 118 |
X_umap[:, 1],
|
| 119 |
c=labels_hdb,
|
| 120 |
-
s=
|
| 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 |
|