R GRAPHICS TRICK !!!

Published: 27 April 2023
on channel: Statistics Globe
1,359
79

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 without registration, duration hours minute second in high quality. This video was added by user Statistics Globe 27 April 2023, don't forget to share it with your friends and acquaintances, it has been viewed on our site 1,359 once and liked it 79 people.