Solutions to "Just KNIME It!" Challenge 02 - Season 2

:boom: A new challenge just came out, folks! :boom:

This week we’re exploring a topic that we didn’t give much attention to in the past: clustering! This very powerful, unsupervised type of learning should be used this week to segment customers into groups with similar patterns. :busts_in_silhouette:

Here is the challenge. Let’s use this thread to post our solutions to it, which should be uploaded to your public KNIME Hub spaces with tag JKISeason2-2.

:sos: Need help with tags? To add tag JKISeason2-2 to your workflow, go to the description panel to the right in KNIME Analytics Platform, click the pencil to edit it, and you will see the option for adding tags right there. :slight_smile: Let us know if you have any problems!

And as always, if you have an idea for a challenge we’d love to hear it! :heart_eyes: Tell us all about it here .

5 Likes

Here’s my solution. Couldn’t quite understand what “new customers” meant in the challenge post. I parsed out the IDs with a six month tenure and used those as the new customers. Also, I couldn’t figure out how to denormalize the data in the modeled part of the workflow for the new customers. Other than that, I think I’ve covered eveything. The clusters are fairly consistent between the two groups. Roughly speaking cluster 0 are the low spenders/users. Cluster 1 is in the middle and cluster 2 are the high spenders with a wide variation. I didn’t play with the parameters much. I’m sure they could be improved. The Silhouette Coefficients aren’t spectacular, but they’re not horrible.

3 Likes

Here is my solution. I didn’t find “Information for newly registered customers” and just partitioned the CC GENERAL.csv data.

2 Likes

Customers with no data in MINIMUM_PAYMENTS were assumed to be newly registered customers.

My workflow is here.

3 Likes

My Submission to the Challenge 2 of season 2.This is a real life challenge where you have to encounter many data fields /dimensions and need to find the relevant one. I have tried to decipher the new customer definition , seems in line and accordingly used the definition for cluster assigner.


Thanks
Anil

5 Likes

Clients with less than 12 months of tenure were considered new registered clients.

1 Like

After seeing some clustering methods, I publish my solution:

The following are the considerations on the flow development.

  • Exists 2 branches:
    • One for the entire tenure (6 to 12 mo.).
    • Second for the data below 12 mo, due to the CC not reaching the year.
  • Use the k-means to create 3 clusters.
  • Data exploration about the complete data vs new credit card users.
  • Distribution of the payments, purchases and tenure.




1 Like

Here is my try for solution of JKISeason2-2
Assuming the customer id sequential The recent 20 % CUST_ID (i.e. 1790 ) has been considered as New

My solution link is

1 Like

This is my submission, referring to the official examples from Klime. But I feel that the solution is not very good.

2 Likes

Very good job, I have learned a lot. Thank you for sharing.

1 Like

Here is my solution.
I tried to use several clustering methods: DBSCAN, OPTICS and k-Means. The first two are running quite slowly, so it is impossible to optimize their parameters in reasonable time. So k-Means seems to be the algorithm to go despite all its drawbacks.
That’s why I sampled 1500 clustering iterations (overkill, I know) to find out if there are any stable cluster centers. Unfortunately I could not find a way to get really stable and robust cluster centers, so I took the best and applied the same clustering model to the new data, assuming that rows with missing missing payments are new.
And getting back the task questions:

  1. Clusters can be roughly interpreted like this:
  • customers who have quite big balance with small amount of purchases with average credit limit
  • customers who have quite big balance with big amount of purchases with high credit limit
  • customers who have quite small balance with small amount of purchases with small credit limit
  1. The quality of the clustering is quite low based on the silhouette coefficient, visual analysis for t-SNE and PCA projections and clustering optimization, when the are a lot of possible scattered cluster centers are available.
2 Likes

Here is mine, Have Fun, please !

Process​

  1. Firstly, I utilized the Data Explorer node to thoroughly comprehend the data and identified two columns with missing data.
  2. I employed two simple techniques, Row Filter and Column Merger, to fill in the missing data.
  3. To ensure consistency within the data, I then normalized it.
  4. Lastly, I directed the data to the k-Means node.

In order to simulate the arrival of new data, I selected several nodes such as Row Sampling, Normalizer (Apply), and Cluster Assigner.

Cluster Analysis Part​

This section discusses the denormalization of the cluster center using the denormalizer node and color-coded identification. Additionally, the categorization of data features are based on size ranges and are illustrated in the two Box Plot.

For instance, cluster_0 indicated low purchase and installments, but high cash advance and transactions. In contrast, cluster_1 showcased higher purchase, one-off purchase, balance, credit limit, and payments. Cluster_2, on the other hand, is more average, and requires more in-depth analysis.

The analysis suggests that cluster_0 users primarily use credit cards for cash advances and less frequently for purchases. For credit company, the next step should include methods to encourage credit card use for purchases. On the other hand, cluster_1 features high-value users that require additional features or personalized interests to retain them.

More work needs to be done to refine the analysis, such as exploring features like the balance-to-credit-limit ratio, purchase-to-balance ratio, and employing more advanced clustering algorithms. However, for this challenge, this is sufficient.

2 Likes

Dear All,

I am the author of the second challenge, sorry for the confusion caused by the term “new customers”.

The “new customers” here could be assumed as the customers we keep out during cluster training, this could be done with partitioning node. Use the majority partition to train the data and treat the minority partition as new customers.

Alternatively, I have seen many interesting ways in which you have defined “new customers”, all interpretations are valid.

Thank you for all the amazing submissions

Happy KNIMEing…!!!

5 Likes

Hello KNIMErs
This is my try for the challenge 02. I’ve been playing around with Python, aiming to validate Credit Card company ABC’s decision on K=3 clustering. Elbow and Silhouette Score charts have been tested, however k-Mean clustering applied from KNIME node:

Data partitioning for newly registered customers was based on TENURE = 6 (204 samples)

What patterns do customers in the same cluster have in common?

BR

4 Likes

My Solution are posted-

2 Likes

Hi Knimers!

I have had doubts but finally, this is my solution.

I am looking forward to Friday to discuss it in the Spain group.


3 Likes

@MoLa_Data Very Nice Solution, but I wanted to know if there is a reason behind scatter plot graph being built on normalized purchases and normalized payments,

In my opinion building the scatter plot on original data with cluster labels can help in us cluster interpretation, let me know what you think.

5 Likes

Hello KNIMErs, Here is my Solutions for “Just KNIME It!” Challenge 02 – Season 2

1 Like

Hi folks!

:boom: As always on Tuesdays, here’s our solution to last week’s Just KNIME It! challenge. :boom:

As @Mpattadkal mentioned above, different interpretations for “new customers” can be used (that is, what is available as new customer data may vary depending on how you interpret it). We just used a small partition of the given dataset.

I hope you found interesting patterns for the customers in the clusters! :busts_in_silhouette:

Also: would you folks like to tackle more clustering challenges? Maybe also other applications of unsupervised learning? Let us know! :blush:

Thanks for your participation and we’ll see you tomorrow for a new challenge!

6 Likes

Better late than ever. Since i learned a few things i thought i would post my solution as well.

I havent read all the solutions yet, but maybe a distinction is that i used linear correlations to establish trends in each cluster, which were represented in heatmaps:

I then used the differences to select columns for the 3D plots used to visualize the clusters:

then some simple categorization to determine marketing strategy:

4 Likes