How to divide a ggplot2 scatterplot into groups using the facet_wrap() function in the R programming language.
R code of this video:
set.seed(7462722)
data <- data.frame(
x = c(rnorm(300),
rnorm(300, 3, 2),
rnorm(300, 0, 5)),
y = c(rnorm(300),
rnorm(300, 1, 5),
rnorm(300, 3, 0.5)),
group = rep(LETTERS[1:3],
each = 300)
)
library("ggplot2")
ggp <- ggplot(data, aes(x, y)) +
geom_point()
ggp
ggp +
facet_wrap(group ~ .)
Follow me on Social Media:
Facebook – Statistics Globe Page: / statisticsglobecom
Facebook – R Programming Group for Discussions & Questions: / statisticsglobe
Facebook – Python Programming Group for Discussions & Questions: / statisticsglobepython
LinkedIn – Statistics Globe Page: / statisticsglobe
LinkedIn – R Programming Group for Discussions & Questions: / 12555223
LinkedIn – Python Programming Group for Discussions & Questions: / 12673534
Twitter: / joachimschork
Music by bensound.com
Watch video R GRAPHICS TRICK !!! online, duration hours minute second in high quality that is uploaded to the channel Statistics Globe 27 April 2023. Share the link to the video on social media so that your subscribers and friends will also watch this video. This video clip has been viewed 1,359 times and liked it 79 visitors.