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
K means Clustering
mario_sark
Member Posts: 13 Contributor I
Hello,
I have a quick question, i am build 3 clusters based on RFM Score. R will represent the recent visit to branch , f will represent how often the customer visit within a year , and finally M will represent the amount of money occurs when the customer make a transaction once visit the branch.
once i create the 3 clusters: can re-cluster each cluster into several Clusters based one some variables i choose ?
Thank you
Mario
I have a quick question, i am build 3 clusters based on RFM Score. R will represent the recent visit to branch , f will represent how often the customer visit within a year , and finally M will represent the amount of money occurs when the customer make a transaction once visit the branch.
once i create the 3 clusters: can re-cluster each cluster into several Clusters based one some variables i choose ?
Thank you
Mario
Tagged:
0
Best Answer
-
Telcontar120 RapidMiner Certified Analyst, RapidMiner Certified Expert, Member Posts: 1,635 UnicornOr you might not need just 3 clusters to start with. If you have an RFM schema and each dimension has 5 different values, then you have 125 possible combinations. So k-means doesn't need to start with 3 clusters just because you have 3 dimensions--you could set it to however many clusters you think you want, or run X-Means to see what it would recommend.
But as @yyhuang said, if you already have an output target variable in mind, then set it as your label and try a supervised learning algorithm instead. If you want something interpretable, then I have had good results with decision trees and RFM frameworks before.7
Answers
Are you building something like a hierarchical cluster model?
You can try the top-down clustering operator with flatten. But if you have any ground truth tags in the data, better go supervised.
Your output data will have high-level grouping label and also low-level detailed cluster ID.
Thank you for you reply ,
these my project Steps:
1- Calculate the RFM
2- Calculate the CP (Customer Power) and give a score
3 - Now i Have as fields : R, F, M, CP
4- Create clusters based on these Variables. (most Prob we want 3 or 4)
5- once we had these clusters we need to do further analysis on each cluster and extract more variables. (maybe 5 variables)
6- now i have more data about my customer in each Cluster. (these that i would use to apply the clustering technique again)
my question was if this is possible to be done. or I have another solution to achieve this Goal
Thank you Again,
Mario