I want to increase the size of centroids points. Below is the my code.
centroids = {
i+1: [np.random.randint(0,80), np.random.randint(0,80)]
for i in range(k)
}
fig = plt.figure(figsize=(10, 5))
plt.scatter(df['x'], df['y'], color='k')
colmap = {1: 'r', 2: 'g', 3: 'b'}
for i in centroids.keys():
plt.scatter(*centroids[i], color=colmap[i])