I am running k-means clustering in R on a dataset with 636,688 rows and 7 columns using the standard stats package: kmeans(dataset, centers = 100, nstart = 25
stats
kmeans(dataset, centers = 100, nstart = 25
I got the same error message, but in my case it helped to increase the number of iterations iter.max. That contradicts the theory of memory overload.