Heatmaps with Seaborn’s ClusterMap

Just recently stumbled on to Seaborn’s ClusterMap function for making heatmaps. Till now relied on Seaborn’s heatmap function for making simple heatmaps with Seaborn heatmap() function and using pheatmap package in R for anything bit complex. Seaborn’s Clustermap function is great for making simple heatmaps and hierarchically-clustered heatmaps with dendrograms on both rows and/or columns.… Continue reading Heatmaps with Seaborn’s ClusterMap

How To Make Heatmap with Seaborn in Python?

Visualizing data with heatmaps is a great way to do exploratory data analysis, when you have a data set with multiple variables. Heatmaps can reveal general pattern in the dataset, instantly. And it is very easy to make beautiful heatmaps with Seaborn library in Python. Let us see 3 examples of creating heatmap visualizations with… Continue reading How To Make Heatmap with Seaborn in Python?