``` using ParallelKMeans using DataFrames df = DataFrame(val = rand(1_000_000)) @time multi_results = kmeans(reshape(df[!, :val], :, 1), 8) ``` The `multi_results.assignment` only gives one value and I was expecting `1_000_000`.