Hi!
I have done my clustering calculations with the KNIME k-Means Node. It works perfect.
Now i want to calculate the cluster centroids like in python:
X = ...
model = KMeans(init='k-means++', n_clusters=16, n_init=10).fit(X)
print(model.cluster_centers_)
http://scikit-learn.org/stable/modules/generated/sklearn.cluster.KMeans.html
How is this possible to access this cluster_centers_ table in your KNIME k-Means Node?