How to make legend order match with plot

Match legend order with plot data order with fct_reorder2

In this post we will learn how to make a line plot such that data on the plot matches with the legend order. We will use forcats package’s fct_reorder2() function. Let us load the packages needed. We will use gapminder data set to make a line plot. First let us compute average life expectancy per… Continue reading How to make legend order match with plot

How to make boxplots between one categorical variable vs all numerical variables

Multiple Boxplots: one categorical variable vs all numerica variables

Often one might be interested in quickly visualizing the relationship between one categorical vs all numerical variables in a dataframe. We can make multiple boxplots between one categorical variable against all the numerical variables on the dataframe at the same time. In this post we will consider a simple example where our dataframe contains one… Continue reading How to make boxplots between one categorical variable vs all numerical variables

How to Change ggplot theme with ggthemes

ggthemes' theme_wsj()

In this post, we will learn how to make beautiful plots with ggplot2 using themes from ggthemes R package. By default ggplot2 makes plots with grey background, using theme_grey(). ggplot2 comes with about 8 complete themes that help us change the look of a given plot. If you want to customize your plot with more… Continue reading How to Change ggplot theme with ggthemes

How to make a plot with column name in a variable

Add color to ggplot using column name in a variable

In this tutorial, we will learn how to make a plot using ggplot2 such that the column name of interest in a plot is saved as a variable. And we are interested in using the variable name to make a boxplot. The ability to use a column name as a variable help us make more… Continue reading How to make a plot with column name in a variable

Exit mobile version