Предполагая, что это в R.
Функция kmeans принимает как минимум 2 аргумента
1. Набор данных, с которым он должен работать
2. и нет начальных центроидов
Это говорит документация (для версии 2.0.4)
Использование:
KMeans(x, centers, iter.max=10, num.seeds=10)
Аргументы
х
A numeric matrix of data, or an object that can be coerced to such a matrix (such as a numeric vector or a dataframe with all numeric columns).
центры
The number of clusters in the solution.
iter.max
The maximum number of iterations allowed.
num.seeds
The number of different starting random seeds to use. Each random seed results in a different k-means solution.
для получения дополнительной информации см.