You can use the alpha argument within the geom_point() function in ggplot2 to modify the transparency of the points in a plot.…
Tidyverse in R
-
- dplyr in RRSoftware TutorialsTidyverse in R
How to Pass a String as Variable Name in dplyr
by Tutor AspireYou can use one of the following methods to pass a string as a variable name in dplyr: Method 1: Use get()…
- ggplot2 in RRSoftware TutorialsTidyverse in R
How to Create Plot in ggplot2 Using Multiple Data Frames
by Tutor AspireYou can use the following basic syntax to create a plot in ggplot2 using multiple data frames: library(ggplot2) ggplot() + geom_line(data=df1, aes(x=x_var,…
- dplyr in RRSoftware TutorialsTidyverse in R
dplyr: How to Summarise Data But Keep All Columns
by Tutor AspireWhen using the summarise() function in dplyr, all variables not included in the summarise() or group_by() functions will automatically be dropped. However,…
- ggplot2 in RRSoftware TutorialsTidyverse in R
How to Remove NAs from Plot in ggplot2 (With Example)
by Tutor AspireYou can use the following basic syntax to remove NA values from a plot in ggplot2: library(ggplot2) ggplot(data=subset(df, !is.na(this_column)), aes(x=this_column)) + geom_bar()…
- dplyr in RRSoftware TutorialsTidyverse in R
dplyr: How to Change Factor Levels Using mutate()
by Tutor AspireYou can use the following basic syntax in dplyr to change the levels of a factor variable by using the mutate() function:…
- ggplot2 in RRSoftware TutorialsTidyverse in R
How to Adjust Space Between Bars in ggplot2 (With Examples)
by Tutor AspireYou can use the following methods to adjust the space between bars in ggplot2 bar charts: Method 1: Adjust Spacing Between Bars…
- ggplot2 in RRSoftware TutorialsTidyverse in R
How to Add Label to geom_hline in ggplot2
by Tutor AspireYou can use the following basic syntax to add a label to a horizontal line in ggplot2: + annotate(“text”, x=9, y=20, label=”Here…
- ggplot2 in RRSoftware TutorialsTidyverse in R
How to Plot Multiple Lines in ggplot2 (With Example)
by Tutor AspireYou can use the following basic syntax to plot multiple lines in ggplot2: ggplot(df, aes(x=x_var, y=y_var)) + geom_line(aes(color=group_var)) + scale_color_manual(name=’legend_title’, labels=c(‘lab1’, ‘lab2’,…
- ggplot2 in RRSoftware TutorialsTidyverse in R
How to Plot Mean and Standard Deviation in ggplot2
by Tutor AspireOften you may want to plot the mean and standard deviation by group in ggplot2. Fortunately this is easy to do using…