ggplot legend labels code example
Example 1: ggplot legend title
+ labs(color='NEW LEGEND TITLE')
Example 2: how to change labels on legend ggplot
scale_color_manual(values = c("#D16103", "#4E84C4"),
labels = c("Justin", "Myself"))
Example 3: ggplot put legend in plot
p + theme(legend.position = c(0.8, 0.2))
Example 4: remove ggplot legend
bp + theme(legend.position="none")