I am implementing a small CRM system. and the concept of data mining to predict and find opportunities and trends are essential for such systems. One data minin
I'm using the following code for clustering with KMeans from sklearn.cluster.KMeans from sklearn.cluster import KMeans num_clusters = 60 km = KMeans(n_cluste
I've got this following code which extract 2 feature(tempo & slotID) from csv file and plot kmeans clustering based on this 2 features. df = pd.read_csv("pr
I am trying to visually cluster nodes in a network based on the weight of their edges: nodes with high edge weight should be close by in the 2d Euclidean space