Clustering a variable based on another variable or set of variables
df11[['COMPONENT_ID','FIRMWARE','SERIAL','CRP0_VDDN']].head()
Consider I have these four columns to analyse. I want to form say 3-5 clusters of COMPONENT_IDs with similar characters. I want this to happen based on the remaining features or just CRPO_VDNN in relation with COMPONENT_IDs. How can I do this ?
Topic python algorithms clustering machine-learning
Category Data Science