In this tutorial, we will learn how to make violin plots using Python's Matplotlib library. Matplotlib has a function called violinplot() and we will use that function to examples of making violinplot first and then learn to customize the violinplots. Unlike other tutorials … [Read more...] about How to Make Violin plots with Matplotlib
How to View All Matplotlib Plot Styles and Change
In this tutorial, we will learn how to change the background theme or style of a plot made with matplotlib. Matplotlib offers a number of ready to use styles to use for matplotlib plots. We will first learn how to find the available style options and then learn to set a … [Read more...] about How to View All Matplotlib Plot Styles and Change
How to Make Barplots with rounded edges in ggplot
In this tutorial, we will learn how make bar plots with rounded edges in ggplot. We will use ggplot2 extension package called ggchicklet developed by the fantastic R developer boB Rudis/hrbrmstr. Let us get started by installing ggchicklet and loading tidyverse. We … [Read more...] about How to Make Barplots with rounded edges in ggplot
Visualizing Binomial Distribution in R
In this tutorial, we will learn how to visualize binomial distribution in R. Binomial Distribution is one of the useful discrete probability distributions that comes handy in modelling problems in a number of scenarios. The classic example of binomial distribution is tossing … [Read more...] about Visualizing Binomial Distribution in R
How to add water mark on a ggplot
In this tutorial, we will learn how to add water marks to a plot made in R. We will use ggplot2 to make the plot and use the R package cowplot to add water mark on top the plot. The cowplot package developed by Claus Wilke functions to draw with and on plots. These … [Read more...] about How to add water mark on a ggplot