I need a legend in order to see the difference between green and blue doots with some text.
scatter_figure_blade <- ggplot() +
theme_bw() +
theme(plot.title = element_text(size = 12, face = "bold", hjust = 0.5)) +
geom_point(data=rp_16_8, aes(x=r_16_8, y=p_16_8), colour = "green", size = 3) +
geom_point(data=rp_8_16, aes(x=r_8_16, y=p_8_16), colour = "blue", size = 3) +
scale_color_manual(name = "Deployments" (?)) +
labs(x = bquote("Reliability" ~ (1 - P[f])), y = "Power Consumption (W)", title = "Google Traces")