Sigma Magic uses the Hartigan-Wong algorithm (by default) with Euclidean distance as the similarity measure. It iteratively assigns data points to clusters and updates centroids until convergence.
Sigma Magic supports continuous numerical data for K-Means clustering. Categorical data needs to be converted into numerical form before clustering.
The cluster plot visually represents data points and their assigned clusters, showing how distinct or overlapping the clusters are.
Yes, but Sigma Magic reduces dimensionality using PCA (Principal Component Analysis) to project data into a 2D or 3D space for visualization.
K-Means uses random initialization; different starting centroids can lead to slightly different results. Fixing the random seed can ensure consistency.
Requires predefining k, struggles with non-spherical clusters, and is sensitive to outliers.