Dataset Used

Here let’s use the “iris” dataset. This is an in-built dataset in R.

R




# Loading the packages 
library(ggplot2)
library(plyr)
  
# load the iris data
df <- iris 
head(df)


Output:

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

In this article, we will discuss how to create Rain Cloud Plots using Half Violin Plot with jittered data points in R

Raincloud plots or Half Violin plots are basically used to visualize the distribution and the overall summary of the data at the same time. This plot is a combination of half violin plots with jittered points on top, boxplots and can be further enhanced by adding central measures of tendency, quartile ranges, etc. 

Similar Reads

Dataset Used

Here let’s use the “iris” dataset. This is an in-built dataset in R....

Plotting a Raincloud using ggplot

...

Contact Us