@@ -59,7 +59,6 @@ from sklearn.datasets import make_blobs
5959``` python
6060# Determine the optimal number of clusters
6161out = clusteval.fit(X, method = ' silhouette' )
62- # Plot
6362fig = 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
7372out = clusteval.fit(X, method = ' dbindex' )
74- # Plot
7573fig = 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
8482out = clusteval.fit(X, method = ' derivative' )
85- # Plot
8683fig = 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
9592out = clusteval.fit(X, method = ' hdbscan' )
96- # Plot
9793fig = 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
107103out = clusteval.fit(X, method = ' hdbscan' )
108- # Plot
109104fig = clusteval.plot(out, X)
110105```
111106<p align =" center " >
0 commit comments