Im trying to make a chart which shows the values of each point next to the point itself.
My current code looks like this:
ggplot()+
geom_point(data = datacombined, aes(x = datacombined$`Poulation group`, y = datacombined$`Percent of population in cicilian labor force`, color = datacombined$Location),size=4) +
scale_color_manual(values = c("US" = "darkblue", "OH" = "red"))+
ylim(0,100)+
theme_bw()+
ylab("Percentage of population in civilian labour force") + xlab("Population group")
I would like to add values next to the points in the plot so for example the red point on the left should say 67.7. I would also like to change the title on the side which shows the location of each statistic.
I tried to make the plot as described, but do not know how to name each point with values.