In this post, we will learn how to fix one of the common ggplot2 error messages. While trying to make a ggplot2, we might get the following error. The error message here " Did you accidentally put + on a new line?" is bit helpful as it hints what is the cause of the error. … [Read more...] about ggplot2 error: Cannot use `+.gg()` with a single argument.
How to Make Heatmap with Matplotlib in Python
In this post, we will learn how to make heatmap with Matplotlib in Python. In Matplotlib, we can make heatmap with the function imshow(). imshow() basically shows the input data as image. We will start making a simple heatmap with a one-liner using imshow() first. And then … [Read more...] about How to Make Heatmap with Matplotlib in Python
Error in ggplot(): Mapping should be created with `aes()`
In this post we will see an example of one of most common errors while making a plot with ggplot2 and how to fix them. Let us we are trying to make a scatter plot using ggplot2 using the following code. Here we use mtcars dataset built-in R to make the scatter … [Read more...] about Error in ggplot(): Mapping should be created with `aes()`
ggplot2 errot: how to fix 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 … [Read more...] about ggplot2 errot: how to fix could not find function “ggplot
How to Make Grouped Violinplot with jittered data points in R
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 … [Read more...] about How to Make Grouped Violinplot with jittered data points in R