Skip to content

Commit 9fbf9fe

Browse files
authored
text update plot
1 parent 1a2c2f0 commit 9fbf9fe

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

README.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ from sklearn.datasets import make_blobs
5959
```python
6060
# Determine the optimal number of clusters
6161
out = clusteval.fit(X, method='silhouette')
62-
# Plot
6362
fig = clusteval.plot(out, X)
6463
```
6564
<p align="center">
@@ -71,7 +70,6 @@ fig = clusteval.plot(out, X)
7170
```python
7271
# Determine the optimal number of clusters
7372
out = clusteval.fit(X, method='dbindex')
74-
# Plot
7573
fig = clusteval.plot(out, X)
7674
```
7775
<p align="center">
@@ -82,7 +80,6 @@ fig = clusteval.plot(out, X)
8280
```python
8381
# Determine the optimal number of clusters
8482
out = clusteval.fit(X, method='derivative')
85-
# Plot
8683
fig = clusteval.plot(out)
8784
```
8885
<p align="center">
@@ -93,7 +90,6 @@ fig = clusteval.plot(out)
9390
```python
9491
# Determine the optimal number of clusters
9592
out = clusteval.fit(X, method='hdbscan')
96-
# Plot
9793
fig = clusteval.plot(out)
9894
```
9995
<p align="center">
@@ -105,7 +101,6 @@ fig = clusteval.plot(out)
105101
```python
106102
# Determine the optimal number of clusters
107103
out = clusteval.fit(X, method='hdbscan')
108-
# Plot
109104
fig = clusteval.plot(out, X)
110105
```
111106
<p align="center">

0 commit comments

Comments
 (0)