researchdatapod.com
How to Remove Legend in ggplot2
You can remove a legend from a plot using the syntax legend.position=”none” for the plot theme. For example, library(ggplot2) ggplot(data = mtcars, aes(x = mpg, y = disp, color = vs)) +…