library(ggplot2)
spec_pro <- ggplot(data = cwk_data, aes(x = Age, y = Perf1, colour = BMI_binom))
spec_pro + geom_point() + theme_bw() + ylab("Supervisor Performance Rating")
spec_pro + guides(fill=guide_legend("BMI"))
Everything works until changing the title of the legend. Then all of the plots and legend disappear entirely.. Thank you in advance for any help!