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
@jlhoward's comment:
Try
kmeans(dataset, algorithm="Lloyd", ..)