Hierarchical Clustering for Categorical and Mixed Data Types in Python
Hierarchical clustering is one of the most popular clustering algorithms after partitioning clustering algorithms like k-means clustering. In this article, we will discuss hierarchical clustering for categorical and mixed data types in python. For this, we will implement agglomerative clustering for datasets having categorical data and mixed data types. How to Perform Hierarchical Clustering for…
