In this tutorial, we will see how to make a histogram with a density line using Seaborn in Python. With Seaborn version 0.11.0, we have a new function histplot() to make histograms. Here, we will learn how to use Seaborn's histplot() to make a histogram with density line … [Read more...] about How to Make Histograms with Density Plots with Seaborn histplot?
How To Make Heatmaps in R with ComplexHeatmap?
Heatmaps are a great way visualize a numerical dataset in a matrix form. Basically, a heatmap shows the actual data values as colors. When there is a broad trend in data, like change in data over rows or columns of data, a heat map makes it easy to see the broader trend. In … [Read more...] about How To Make Heatmaps in R with ComplexHeatmap?
How to Make Heatmaps in R with pheatmap?
Heatmaps are one of the ways to visualize quantitative data in two dimension. Heatmaps show the actual data as colors and can reveal common patterns easily. In R, there are multiple ways to make heatmap starting from data in matrix form. In this post, we will learn how to make … [Read more...] about How to Make Heatmaps in R with pheatmap?
How To Adjust Positions of Axis Labels in Matplotlib?
In this post, we will learn how to adjust positions of x-axis and y-axis labels in Matplotlib in Python. By default, plots with matplotlib places the axis labels in the middle. With matplotlib version 3.3.0, the matplotlib functions set_xlabel and set_ylabel have a new parameter … [Read more...] about How To Adjust Positions of Axis Labels in Matplotlib?
How to Make ECDF plot with Seaborn in Python?
ECDF plot, aka, Empirical Cumulative Density Function plot is one of the ways to visualize one or more distributions. In this post, we will learn how to make ECDF plot using Seaborn in Python. Till recently, we have to make ECDF plot from scratch and there was no out of the … [Read more...] about How to Make ECDF plot with Seaborn in Python?