ggplot2 errot: how to fix could not find function “ggplot

How to fix Error in ggplot(., aes... could not find function ggplot

In this post we will learn how to fix one of the most common ggplot2 errors, saying “could not find function “ggplot”” Let us consider an example where we are trying to make boxplot using iris, one of the R built-in datasets. We have been extra careful and write a perfect R code as show… Continue reading ggplot2 errot: how to fix could not find function “ggplot

How to Make Grouped Violinplot with jittered data points in R

Grouped violin plot with jittered points using geom_sina() in ggforce

In this post, we will learn how to make grouped violin plot with jittered data points on top of it using ggplot2 in R. One of the challenges in making grouped violin or box plots with jittered data points is proper alignment of data points and the underlying plot. In an earlier tutorial, we addressed… Continue reading How to Make Grouped Violinplot with jittered data points in R

How to Make Barplots with rounded edges in ggplot

barplot with rounded edge bars in ggplot2 with ggchicklet

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 have installed ggchicklet version 0.5.2. Let us quickly generate data for making a… Continue reading How to Make Barplots with rounded edges in ggplot

Visualizing Binomial Distribution in R

Binomial Probability Distribution as Barplot

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 a coin n times and counting the number of heads (successes) for a… Continue reading Visualizing Binomial Distribution in R

Exit mobile version