ggplot change legend labels code example
Example 1: how to change labels on legend ggplot
scale_color_manual(values = c("#D16103", "#4E84C4"),
labels = c("Justin", "Myself"))
Example 2: ggplot put legend in plot
p + theme(legend.position = c(0.8, 0.2))
Example 3: labs fill ggplot2
p <- ggplot(df, aes(x=rating, fill=cond)) +
geom_density(alpha=.3) +
xlab("NEW RATING TITLE") +
ylab("NEW DENSITY TITLE")
p <- p + guides(fill=guide_legend(title="New Legend Title"))