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?
How to Make Boxplot with Jittered Data Points using Altair in Python
In this post, we will learn how to make boxplot with data points using Altair. Latest version of Altair supports making simple boxplots. However, current version of Altair does not support adding adding jittered data points on top of boxplots. Thanks to Justin Bois from Caltech, … [Read more...] about How to Make Boxplot with Jittered Data Points using Altair in Python
How to Save Multiple DataFrames to a Single Excel File in R?
Int his tutorial, we will see how to save a dataframe into an excel file in R. We will use the R package openxlsx to save dataframes as xlsx files. We will start with writing a single dataframe into an excel file with one sheet. Next, we will see how to save multiple dataframes … [Read more...] about How to Save Multiple DataFrames to a Single Excel File in R?