We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4ad959 commit 6cf6360Copy full SHA for 6cf6360
Tutorials/kmeans_implementation_project/kmeans.jl
@@ -16,6 +16,6 @@ data = pyimport("sklearn.datasets")
16
X, y = data.make_blobs(n_samples=5000, n_features=3, centers=3, cluster_std=0.9, random_state=10)
17
18
# Visualize the feature space
19
-scatter3d(X[:, 1], X[:, 2], X[:, 3], color=y, legend=false, st=:surface,
+scatter3d(X[:, 1], X[:, 2], X[:, 3], color=y, legend=false,
20
xlabel="Feature #1", ylabel="Feature #2", zlabel="Feature #3",
21
title="3D View Of Feature Space Coloured By Assigned Cluster")
0 commit comments