You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ggplot(data = data,aes(x = region, y = observations)) +
geom_point() +
geom_jitter()
xlab(“region") +
ylab(“observations") +
theme_classic()
# Barplot does not show us the great variance in diffrent regions here. SInce means are very similar we might be deceived. Jitterplot shows us the spread of clusters which gives us more information.