How to Make Boxplot with Jittered Data Points using Altair in Python

Boxplot with jittered data points Altair

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, we can use his data visualization utility package Altair-catplot,… Continue reading 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 into… Continue reading How to Save Multiple DataFrames to a Single Excel File in R?

How To Rotate x-axis Text Labels in ggplot2

How to rotate x-axis text labels 45 degree?

One of the common problems while making data visualization is making the axis label clearly legible. Often they tend to overlap and make it difficult to read the text labels. There are a few ways we can make the axis text label easy to read. In this tutorial, we will learn how to rotate axis… Continue reading How To Rotate x-axis Text Labels in ggplot2

How To Make Scree Plot in R with ggplot2

Scree plot: barplot with geom_col()

PCA aka Principal Component analysis is one of the most commonly used unsupervised learning techniques in Machine Learning. PCA on a high dimensional data can reveal the pattern or structure in the data. Scree plot is one of the diagnostic tools associated with PCA and help us understand the data better. Scree plot is basically… Continue reading How To Make Scree Plot in R with ggplot2

Rain Cloud Plots using Half Violin Plot with jittered data points in R

Rain Cloud Plot Colored by Variable

Raincloud plot is another interesting use of Violinplots. Rain cloud plot is basically a combination of horizontal half violin plots with jittered data points. We will see step-by-step examples of how to make raincloud plot in this tutorial in R with ggplot2. Since there is no special function available for half violinplot in ggplot2, we… Continue reading Rain Cloud Plots using Half Violin Plot with jittered data points in R

Exit mobile version