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?

3 Examples Using Pivot Table in Pandas

One of the most common tasks in data science is to manipulate the data frame we have to a specific format. For example, sometime we may want to take data frame with fewer columns, say in long format, summarize and convert into a data frame with multiple columns, i.e. a wide data frame. Python Pandas… Continue reading 3 Examples Using Pivot Table in Pandas