The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
"how to programatically cluster a vector into X, Y coordinates?"
daviddonohue
Member Posts: 8 Contributor II
Hello! I would like to convert a table of data, with 5 or more attributes, into a set of X, Y coordinates, suitable for plotting in my own scatter plot. I would think that I could represent each row as a vector of numeric and nominal values. Next, I could pass the vectors into a RapidMiner clustering algorithm, and retrieve a single pair of X,Y coordinates for each row. Can RapidMiner help me do this?
Many thanks!
David Donohue
Many thanks!
David Donohue
Tagged:
0
Answers
RapidMiner can help here, but not with clustering. Clustering might provide some informations about centroids within groups, but the coordinates of the centroids are in the space of the data and hence have the same dimensionality. But you might use algorithms for reducing the dimensionality. I would suggest using the PCA, because you have to build the model only once and then might apply it to any new data, placing it in the same way. If you use SOMDimensionalityReduction, you will have to retrain the complete model everytime you have new data.
Greetings,
Sebastian