I'm trying to create APA style figures where I have both individual data points and the best fitting lines of two different levels of a variable. When I adjust the shape of my points using geom_point, it is not changing all of my points. See code below:
ggplot(df, aes(x = Psych.Distress.Sum, y = Likelihood.Max, col = Feedback, fill = Feedback)) +
geom_smooth(method = "lm", se = T, aes(linetype = Feedback)) +
geom_point(aes(shape = Feedback), set.seed = 1) +
geom_jitter() +
labs(x = "Psychological Distress", y = "Endorsement of Max's Feedback Strategy") +
apatheme +
theme(axis.title = element_text(face="bold")) +
theme(legend.text = element_text(face="bold")) +
theme(legend.position = c(0.87, 0.13))