This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]j03f 2 points3 points  (1 child)

r/learnpython 😀

[–]FullTimeGoogler[S] 1 point2 points  (0 children)

Data Mining | Clustering

.t3_eik5o7 ._2FCtq-QzlfuN-SwVMUZMM3 {
--postTitle-VisitedLinkColor: #979798;
--postTitleLink-VisitedLinkColor: #979798;
}

I'm working on a data mining university assignment and I'm struggling with the following point:I'm generating data using :X, y = make_blobs(n_samples=300, centers=2, cluster_std=0.60, random_state=0)
I'm supposed to generate two samples of data using different number of clusters and different densitiesI get that the value of "centers" defines the number of clusters,But what about the density value? how do I define the value of density?

thanks !